From 526a3714c929b2d8de443c0fff83c13d3546d642 Mon Sep 17 00:00:00 2001 From: Nix Krystik Date: Fri, 28 Aug 2026 01:26:38 +0800 Subject: [PATCH] (tasks): remove depreciated references. --- src/index.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/index.ts b/src/index.ts index 80e7936..74df98c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,7 +1,6 @@ import { Client as DiscordClient, GatewayIntentBits, MessageFlags, Partials } from 'discord.js'; import { config } from './config'; import events from './events'; -import { ScheduledTasks, Scheduler } from './scheduler'; import { Database } from './shared/Database'; import { openRedisClient } from './shared/RedisClient'; import { Handler } from './types'; @@ -32,8 +31,6 @@ const client = new DiscordClient({ } }); -const scheduler: Scheduler = new Scheduler(client); - const commands: Handler[] = []; const contextMenus: Handler[] = []; const buttons: Handler[] = [];