diff --git a/src/commands/help.ts b/src/commands/help.ts new file mode 100644 index 0000000..c0d4ab4 --- /dev/null +++ b/src/commands/help.ts @@ -0,0 +1,11 @@ +import TelegramBot, { Message } from 'node-telegram-bot-api'; + +/** + * Basic Ping Pong Command for testing + * @param bot Telegram Bot + * @param msg Message + */ +export default function help(bot: TelegramBot, msg: Message): void { + const chatId = msg.chat.id; + bot.sendMessage(chatId, `Help command`); +} \ No newline at end of file