mirror of
https://github.com/fzumpe/foundry-dnd5e-adaptive-resistances.git
synced 2026-06-06 21:10:02 +02:00
12 lines
272 B
JavaScript
12 lines
272 B
JavaScript
import { MODULE_ID } from "./constants.js";
|
|
import { seedFeatureCompendium } from "./features.js";
|
|
import "./hooks.js";
|
|
|
|
Hooks.once("init", () => {
|
|
console.info(`${MODULE_ID} | Initializing.`);
|
|
});
|
|
|
|
Hooks.once("ready", async () => {
|
|
await seedFeatureCompendium();
|
|
});
|