summaryrefslogtreecommitdiff
path: root/packages/gateway/src/commands/index.ts
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-09-26 03:41:24 -0700
committerFuwn <[email protected]>2025-09-26 03:41:24 -0700
commitf54fe78fc2d1d6e842c4626eac9a2cde32693399 (patch)
tree43ce848432c733173f0a717d247ce8ecc0f9f2e2 /packages/gateway/src/commands/index.ts
parentfeat(gateway:moderationAgent): Update analysis guidelines (diff)
downloadumabotdiscord-f54fe78fc2d1d6e842c4626eac9a2cde32693399.tar.xz
umabotdiscord-f54fe78fc2d1d6e842c4626eac9a2cde32693399.zip
feat(gateway:commands): Add CRP command
Diffstat (limited to 'packages/gateway/src/commands/index.ts')
-rw-r--r--packages/gateway/src/commands/index.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/gateway/src/commands/index.ts b/packages/gateway/src/commands/index.ts
index c94db00..29e3f71 100644
--- a/packages/gateway/src/commands/index.ts
+++ b/packages/gateway/src/commands/index.ts
@@ -1,8 +1,10 @@
import { Client } from "discord.js";
import { handleSayCommand } from "./say";
import { handleStartCommand } from "./start";
+import { handleCrpCommand } from "./crp";
export const handleCommands = (client: Client) => {
handleSayCommand(client);
handleStartCommand(client);
+ handleCrpCommand(client);
};