19 lines
586 B
Python
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')
|
||
|
# ],
|
||
|
]
|