(init): Initial files. Features not implemented.

This commit is contained in:
Nix Krystik
2026-08-26 00:02:04 +08:00
commit 8d4d99f2e8
17 changed files with 791 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import { CommandClient, Event } from "athena-prime";
// ----------
class ReadyEvent extends Event<CommandClient> {
event: string = 'ready' as const;
async handle(context: CommandClient<any, any>) {
await context.deployCommands();
context.setCustomActivity("Petting the Pond!");
}
}
export default new ReadyEvent('ready');