diff options
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); }; |