Files
stcs/app/telegram/Keyboards/reply_keyboards.py
algizn97 3c282975c1 Updated
2025-08-27 12:56:32 +05:00

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)