()
| 52 | |
| 53 | @app.route('/' + TOKEN, methods=['POST']) |
| 54 | def getMessage(): |
| 55 | json_string = request.get_data().decode('utf-8') |
| 56 | update = telebot.types.Update.de_json(json_string) |
| 57 | bot.process_new_updates([update]) |
| 58 | return '!', 200 |
| 59 | |
| 60 | |
| 61 | @app.route('/') |
nothing calls this directly
no test coverage detected
searching dependent graphs…