new scheduler? in 2026? nahhh

This commit is contained in:
Nix Krystik
2026-05-24 03:49:28 +08:00
parent a0e1daf586
commit b9faf8d0a6
7 changed files with 69 additions and 9 deletions
+8
View File
@@ -0,0 +1,8 @@
import { Client } from "discord.js";
export type Task = {
interval: number;
firstRun: boolean;
handle: (context: Client) => Promise<void>;
};