12 lines
450 B
JavaScript
12 lines
450 B
JavaScript
import { __ID } from "../consts.mjs";
|
|
import { chatSidebarBackground } from "../settings/chatSidebarBackground.mjs";
|
|
import { preventUserConfigOpen } from "../settings/preventUserConfigOpen.mjs";
|
|
import { startSidebarExpanded } from "../settings/startSidebarExpanded.mjs";
|
|
|
|
Hooks.once(`init`, () => {
|
|
console.log(`${__ID} | Initializing`);
|
|
|
|
chatSidebarBackground.register();
|
|
preventUserConfigOpen.register();
|
|
startSidebarExpanded.register();
|
|
});
|