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

19 lines
604 B
Python

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