tg_bot/keyboards/FirstStepKeyboard.py
2024-12-06 14:20:29 +03:00

19 lines
586 B
Python

from bot.Keyboard import Keyboard
from telegram import InlineKeyboardButton, InlineKeyboardMarkup
class FirstStepKeyboard(Keyboard):
def get_keyboard(self):
return [
[
InlineKeyboardButton("Авторизация", callback_data='request_code')
],
# [
# InlineKeyboardButton("Стать разработчиком", callback_data='set_developer')
# ],
# [
# InlineKeyboardButton("Меню заведения", callback_data='get_menu')
# ],
]