import { Client } from "discord.js"; import { handleSayCommand } from "./say"; import { handleStartCommand } from "./start"; export const handleCommands = (client: Client) => { handleSayCommand(client); handleStartCommand(client); };