File size: 557 Bytes
16bfc87 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
from telegram import InlineKeyboardButton, InlineKeyboardMarkup
from tgbot.handlers.onboarding.manage_data import SECRET_LEVEL_BUTTON
from tgbot.handlers.onboarding.static_text import github_button_text, secret_level_button_text
def make_keyboard_for_start_command() -> InlineKeyboardMarkup:
buttons = [[
InlineKeyboardButton(github_button_text, url="https://github.com/ohld/django-telegram-bot"),
InlineKeyboardButton(secret_level_button_text, callback_data=f'{SECRET_LEVEL_BUTTON}')
]]
return InlineKeyboardMarkup(buttons)
|