summaryrefslogtreecommitdiff
path: root/packages/gateway/src/commands/index.ts
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-09-24 19:04:14 -0700
committerFuwn <[email protected]>2025-09-24 19:15:34 -0700
commit3b08854f33c9944761367597e6850fe6e27e3af3 (patch)
tree8b6169d08cc85b0a6a74c761615c2a8e560ac105 /packages/gateway/src/commands/index.ts
parentrefactor: Move interactions client to packages directory (diff)
downloadumabotdiscord-3b08854f33c9944761367597e6850fe6e27e3af3.tar.xz
umabotdiscord-3b08854f33c9944761367597e6850fe6e27e3af3.zip
feat: Integrate gateway client
Diffstat (limited to 'packages/gateway/src/commands/index.ts')
-rw-r--r--packages/gateway/src/commands/index.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/packages/gateway/src/commands/index.ts b/packages/gateway/src/commands/index.ts
new file mode 100644
index 0000000..c94db00
--- /dev/null
+++ b/packages/gateway/src/commands/index.ts
@@ -0,0 +1,8 @@
+import { Client } from "discord.js";
+import { handleSayCommand } from "./say";
+import { handleStartCommand } from "./start";
+
+export const handleCommands = (client: Client) => {
+ handleSayCommand(client);
+ handleStartCommand(client);
+};