import { DyNTS_Bot_Command } from '../_models/bot-command.interface'; export const DyNTS_Bot_defaultCommands: DyNTS_Bot_Command[] = [ { command: '!ping', description: 'Ping the bot', commandHandler: async (message) => { // This will be handled by the provider's replyToMessage method // The actual implementation will be in the provider }, }, ]