Added new commands. getGroupStats and registerGroup.
All checks were successful
Main / build-and-push-docker-image (20.x) (push) Successful in 3m3s

This commit is contained in:
2025-12-16 15:25:02 -05:00
parent 66fb9cef85
commit c088d7c4a5
3 changed files with 165 additions and 0 deletions

View File

@@ -18,6 +18,8 @@ import { metaBlacklist } from "./features/metaBlacklist.js";
import { botInfoCommand } from "./features/botInfoCommand.js";
import { helpCommand } from "./features/helpCommand.js";
import { embedCheck } from "./features/embedCheck.js";
import { registerGroup } from "./features/registerBotCommand.js";
import { getGroupStats } from "./features/getGroupStatsCommand.js";
interface Dependencies {
config: Config;
@@ -70,6 +72,8 @@ export function createBot(
// Commands
protectedBot.use(botInfoCommand);
protectedBot.use(helpCommand);
protectedBot.use(registerGroup);
protectedBot.use(getGroupStats);
// Blacklist Feature
protectedBot.use(twitterBlacklist);