A powerful and extendable Discord bot, with it's own module system :3 thevoid.cafe/projects/voidy
at develop 418 B view raw
1import { CommandLoader, EventLoader, type Module } from "@voidy/framework"; 2 3export default { 4 id: "core", 5 name: "Core", 6 description: "Initializes the bot and registers all commands.", 7 author: "thevoid.cafe", 8 9 exports: [ 10 { 11 source: `${import.meta.dir}/events`, 12 loader: EventLoader, 13 }, 14 { 15 source: `${import.meta.dir}/commands`, 16 loader: CommandLoader, 17 }, 18 ], 19} as Module;