(events): postgres sucks.

This commit is contained in:
2026-08-26 12:03:25 +08:00
parent 00c64f449a
commit eaf05aebc3
10 changed files with 132 additions and 7 deletions
+2
View File
@@ -1,6 +1,7 @@
import 'dotenv/config';
import { CommandClient, Constants, Guild, Member, Message, NullCollection, User } from 'athena-prime';
import commands from './commands';
import events from './events';
// ----------
@@ -27,6 +28,7 @@ const client: CommandClient = new CommandClient({
},
});
commands.forEach(command => client.registerCommand(command));
events.forEach(event => client.registerEvent(event));
// ----------