diff --git a/src/commands/pingpong.ts b/src/commands/pingpong.ts deleted file mode 100644 index b37da15..0000000 --- a/src/commands/pingpong.ts +++ /dev/null @@ -1,12 +0,0 @@ -import TelegramBot, { Message } from 'node-telegram-bot-api'; - -/** - * Basic Ping Pong Command for testing - * @param bot Telegram Bot - * @param msg Message - */ -export default function pingpong(bot: TelegramBot, msg: Message): void { - const chatId = msg.chat.id; - bot.sendMessage(chatId, '🏓 pong!'); -} -