summaryrefslogtreecommitdiff
path: root/packages/gateway/src/commands/index.ts
blob: 87b37f92e5f945c1bb7396ac392a67df2dc5464a (plain) (blame)
1
2
3
4
5
6
import { Client } from "discord.js";
import { handleCommandHandler } from "./commandHandler";

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