diff options
| author | Fuwn <[email protected]> | 2025-09-24 19:04:14 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-09-24 19:15:34 -0700 |
| commit | 3b08854f33c9944761367597e6850fe6e27e3af3 (patch) | |
| tree | 8b6169d08cc85b0a6a74c761615c2a8e560ac105 /packages/gateway/src/commands/index.ts | |
| parent | refactor: Move interactions client to packages directory (diff) | |
| download | umabotdiscord-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.ts | 8 |
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); +}; |