19 lines
603 B
Python
19 lines
603 B
Python
from bot.Keyboard import Keyboard
|
|
from telegram import InlineKeyboardButton, InlineKeyboardMarkup
|
|
|
|
|
|
class FirstStepDeveloper(Keyboard):
|
|
|
|
def get_keyboard(self):
|
|
return [
|
|
[
|
|
InlineKeyboardButton("Последние проекты", callback_data='get_last_projects')
|
|
],
|
|
# [
|
|
# InlineKeyboardButton("Стать разработчиком", callback_data='set_developer')
|
|
# ],
|
|
# [
|
|
# InlineKeyboardButton("Меню заведения", callback_data='get_menu')
|
|
# ],
|
|
]
|