(rewrite): Bot & Events. This most definitely doesn't work yet. I'm just running out of time to work on this atm.

This commit is contained in:
2026-08-11 10:27:07 +08:00
parent 2b65793903
commit 32b06a384b
25 changed files with 292 additions and 154 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
import { Client } from 'discord.js';
import { CommandClient } from 'athena-prime';
export interface Task {
interval: number;
firstRun: boolean;
handle(context: Client): Promise<void>;
handle(context: CommandClient): Promise<void>;
};