A powerful and extendable Discord bot, with it's own module system :3
thevoid.cafe/projects/voidy
1import { CommandLoader } from "@voidy/framework";
2
3export default {
4 id: "user",
5 name: "User Management Services",
6 description:
7 "Provides various resources for working with users, like global preferences and consent statements.",
8 author: "thevoid.cafe",
9
10 exports: [
11 {
12 source: `${import.meta.dir}/commands`,
13 loader: CommandLoader,
14 },
15 ],
16};