:
This commit is contained in:
ollyhearn
2023-06-07 20:08:08 +03:00
parent 6962420e28
commit 7f78c79837
2 changed files with 24 additions and 13 deletions

View File

@ -0,0 +1,15 @@
from telebot.types import InlineKeyboardButton as button, InlineKeyboardMarkup as keyboard
def menu():
return keyboard(
keyboard=[
[
button(text=" Новая очередь", callback_data="new")
],
[
button(text="📋 Мои очереди", callback_data="my")
],
[
button(text=" О боте", callback_data="about")
],
])