Add Kick streaming monitoring module
All checks were successful
Auto Build and Push Docker Image / build (push) Successful in 36s

This commit is contained in:
2026-03-31 09:28:28 +00:00
parent 5bbcb0f53f
commit ce578ab377
8 changed files with 408 additions and 11 deletions

View File

@@ -6,6 +6,7 @@ import { dirname, join } from 'node:path';
import { Command } from './structures/Command.js';
import { DB } from './structures/Database.js';
import { TwitchManager } from './structures/TwitchManager.js';
import { KickManager } from './structures/KickManager.js';
import { ReminderManager } from './structures/ReminderManager.js';
const __filename = fileURLToPath(import.meta.url);
@@ -60,6 +61,9 @@ for (const file of eventFiles) {
// Start Twitch Polling
TwitchManager.startPolling(client);
// Start Kick Polling
KickManager.startPolling(client);
// Start Reminder Polling
ReminderManager.startPolling(client);