openai-discord/src/bot/commands/index.ts

11 lines
311 B
TypeScript

import { Command } from '@/bot/models/command';
import { PingCommand } from '@/bot/commands/pingCommand';
import { ChatCommand } from '@/bot/commands/chatCommand';
import { ClearCommand } from '@/bot/commands/clearCommand';
export const commands: Command[] = [
PingCommand,
ChatCommand,
ClearCommand,
];