- Эмодзи нестабильно передаются через файловые каналы, заменены на ASCII - menu.py: эмодзи заменены на [текст] для совместимости
21 lines
526 B
Python
21 lines
526 B
Python
from aiogram.types import ReplyKeyboardMarkup, KeyboardButton
|
|
|
|
menu = ReplyKeyboardMarkup(
|
|
keyboard=[
|
|
[KeyboardButton(text="/start")],
|
|
[KeyboardButton(text="[services]")],
|
|
[KeyboardButton(text="[book]")],
|
|
[KeyboardButton(text="[mybookings]")],
|
|
[KeyboardButton(text="[contacts]")],
|
|
[KeyboardButton(text="[about]")],
|
|
],
|
|
resize_keyboard=True
|
|
)
|
|
|
|
cancel_menu = ReplyKeyboardMarkup(
|
|
keyboard=[
|
|
[KeyboardButton(text="cancel")]
|
|
],
|
|
resize_keyboard=True
|
|
)
|