Files
queuebot/bot/app/keyboards.py
ollyhearn 7f78c79837 ui:
:
2023-06-07 20:08:08 +03:00

16 lines
475 B
Python
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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")
],
])