summaryrefslogtreecommitdiff
path: root/packages/gateway/src/commands/index.ts
blob: c94db00b3fdef75905ab7b500fc2180d1b344ea4 (plain) (blame)
1
2
3
4
5
6
7
8
import { Client } from "discord.js";
import { handleSayCommand } from "./say";
import { handleStartCommand } from "./start";

export const handleCommands = (client: Client) => {
  handleSayCommand(client);
  handleStartCommand(client);
};