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