1
0
mirror of https://gitlab.com/MisterBiggs/multi-bot-tutorial.git synced 2025-08-05 13:01:23 +00:00

rearranged file hierarchy again

This commit is contained in:
2019-07-11 21:34:50 -07:00
parent f8e8ba7eaa
commit fa05c54705
6 changed files with 64 additions and 14 deletions

0
telegram/Dockerfile Normal file
View File

View File

@@ -1,13 +0,0 @@
from telegram.ext import Updater, CommandHandler
def hello(bot, update):
update.message.reply_text("Hello {}".format(update.message.from_user.first_name))
updater = Updater("TOKEN")
updater.dispatcher.add_handler(CommandHandler("hello", hello))
updater.start_polling()
updater.idle()