blob: 29e3f713db166a541e5370d295503653be7d1cee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
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);
};
|