diff options
| author | Fuwn <[email protected]> | 2025-09-28 15:44:42 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-09-28 15:44:42 -0700 |
| commit | fdeaebf11ba805f0fc9757221b28817cc7497eea (patch) | |
| tree | 29151f1fe055576170ace1fe5f17e2055ccf7af4 /packages/gateway/src/commands/commandHandler.ts | |
| parent | feat(listeners:moderationAgent): Update mistake portion of removal notification (diff) | |
| download | umabotdiscord-fdeaebf11ba805f0fc9757221b28817cc7497eea.tar.xz umabotdiscord-fdeaebf11ba805f0fc9757221b28817cc7497eea.zip | |
feat(commands): Add delete command
Diffstat (limited to 'packages/gateway/src/commands/commandHandler.ts')
| -rw-r--r-- | packages/gateway/src/commands/commandHandler.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/gateway/src/commands/commandHandler.ts b/packages/gateway/src/commands/commandHandler.ts index 5d8b77a..e985e11 100644 --- a/packages/gateway/src/commands/commandHandler.ts +++ b/packages/gateway/src/commands/commandHandler.ts @@ -3,6 +3,7 @@ import { handleSayCommand } from "./say"; import { handleStartCommand } from "./start"; import { handleCrpCommand } from "./crp"; import { handleReactCommand } from "./react"; +import { handleDeleteCommand } from "./delete"; export const handleCommandHandler = (client: Client) => { client.on(Events.MessageCreate, async (message: Message) => { @@ -13,6 +14,7 @@ export const handleCommandHandler = (client: Client) => { handleStartCommand(message), handleCrpCommand(message), handleReactCommand(message), + handleDeleteCommand(message), ]); }); }; |