diff options
| author | Fuwn <[email protected]> | 2025-09-26 03:41:24 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-09-26 03:41:24 -0700 |
| commit | f54fe78fc2d1d6e842c4626eac9a2cde32693399 (patch) | |
| tree | 43ce848432c733173f0a717d247ce8ecc0f9f2e2 /packages/gateway/src/commands/index.ts | |
| parent | feat(gateway:moderationAgent): Update analysis guidelines (diff) | |
| download | umabotdiscord-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.ts | 2 |
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); }; |