(msg)
| 10 | #/start command message |
| 11 | @bot.message_handler(commands=['start']) |
| 12 | def startmsg(msg): |
| 13 | bot.reply_to(msg, "Hey there, I'm a bot made by pyTelegramBotAPI!") |
| 14 | |
| 15 | #Get notified of incoming members in group |
| 16 | @bot.message_handler(content_types=['new_chat_members']) |
nothing calls this directly
no test coverage detected
searching dependent graphs…