Files
stcs/app/telegram/Keyboards/reply_keyboards.py
algizn97 4406003a6e Fixed
2025-08-27 13:28:33 +05:00

6 lines
281 B
Python

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