mirror of
https://github.com/Balshgit/gpt_chat_bot.git
synced 2025-09-11 22:30:41 +03:00
15 lines
485 B
Python
15 lines
485 B
Python
from telegram import InlineKeyboardButton
|
||
|
||
from constants import BotStagesEnum
|
||
|
||
main_keyboard = [
|
||
[
|
||
InlineKeyboardButton("Обо мне", callback_data=str(BotStagesEnum.about_me)),
|
||
InlineKeyboardButton("Веб версия", callback_data=str(BotStagesEnum.website)),
|
||
],
|
||
[
|
||
InlineKeyboardButton("Помощь", callback_data=str(BotStagesEnum.help)),
|
||
InlineKeyboardButton("О боте", callback_data=str(BotStagesEnum.about_bot)),
|
||
],
|
||
]
|