(init): initial files. includes basic client & database template using postgres.

This commit is contained in:
2026-08-27 22:26:12 +08:00
commit a77ab24e02
17 changed files with 876 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import { Event, CommandClient } from 'athena-prime';
class ReadyEvent extends Event<CommandClient> {
event: string = 'ready' as const;
async handle(context: CommandClient<any, any>) {
await context.deployCommands();
}
}
export default new ReadyEvent('ready');