(rewrite): Updated bot to actually load the commands and events.

This commit is contained in:
2026-08-11 19:44:30 +08:00
parent 0da0349994
commit 34e88d9a4f
2 changed files with 36 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
import database from "./admin/database";
import renameChannel from "./admin/rename-channel";
import ban from "./moderation/ban";
import hardban from "./moderation/hardban";
import about from "./utilities/about";
import nameSync from "./utilities/name-sync";
export default [
// Admin
database,
renameChannel,
// Moderation
ban,
hardban,
// Utilities
about,
nameSync
];