import { CommandLoader, EventLoader, type Module } from "@voidy/framework"; export default { id: "core", name: "Core", description: "Initializes the bot and registers all commands.", author: "thevoid.cafe", exports: [ { source: `${import.meta.dir}/events`, loader: EventLoader, }, { source: `${import.meta.dir}/commands`, loader: CommandLoader, }, ], } as Module;