1
0
mirror of https://gitlab.com/questable/questable_bot synced 2025-10-22 17:00:06 +02:00

Add initial code for base_quest, quest, side_quest.

Also, fix typo.
This commit is contained in:
2018-10-25 00:51:48 +05:30
parent f1b866c4a2
commit 7672e33b4e
2 changed files with 31 additions and 1 deletions

2
bot.py
View File

@@ -23,7 +23,7 @@ def start(bot, update):
text = f"Hello {name}!\n" + \
"Welcome to Questable. To get started, check /help."
custom_keyboard = [
['Add Quest', 'Add Side-quests'],
['Add Quest', 'Add Side-quest'],
['List Quests', 'List Side-quests']
]
reply_markup = telegram.ReplyKeyboardMarkup(custom_keyboard)