Files
stcs/app/telegram/Keyboards/reply_keyboards.py
Kirill Strelnikov ed67ed78c0 version 1 STCS
2025-07-21 13:40:33 +07:00

6 lines
256 B
Python

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