Answers for "telegram bot in multiple files"

0

telegram bot in multiple files

var bot = new TelegramBot(token, { polling: true });

includeHere('./CommandGroup1.js')
includeHere('./TestGroup.js')
Posted by: Guest on April-25-2021
0

telegram bot in multiple files

bot.onText(/\/start/,function(msg){...})
bot.onText(/\/echo/,function(msg){...})
Posted by: Guest on April-25-2021
0

telegram bot in multiple files

bot.onText(/\/test1/,function(msg){...})
bot.onText(/\/AnotherTest/,function(msg){...})
Posted by: Guest on April-25-2021

Browse Popular Code Answers by Language