import { Message } from 'discord.js'; import { DyNTS_DiBo_Command } from '../_models/dibo-command.interface'; export const DyNTS_DiBo_defaultCommands: DyNTS_DiBo_Command[] = [ { command: '!ping', description: 'Ping the bot', commandHandler: async (message: Message) => { await message.reply('Pong!'); }, }, ]