6 lines
280 B
Python
6 lines
280 B
Python
from aiogram.types import ReplyKeyboardMarkup, KeyboardButton
|
|
|
|
base_buttons_markup = ReplyKeyboardMarkup(keyboard=[
|
|
[KeyboardButton(text="👤 Профиль")],
|
|
# [KeyboardButton(text="Настройки")]
|
|
], resize_keyboard=True, one_time_keyboard=True) |