From f54fe78fc2d1d6e842c4626eac9a2cde32693399 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Fri, 26 Sep 2025 03:41:24 -0700 Subject: feat(gateway:commands): Add CRP command --- packages/gateway/src/commands/index.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'packages/gateway/src/commands/index.ts') 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); }; -- cgit v1.2.3