2
0
forked from kodorvan/stcs
Files
stcs/app/telegram/keyboards/reply.py
2025-10-10 14:14:46 +05:00

12 lines
415 B
Python

from aiogram.types import KeyboardButton, ReplyKeyboardMarkup
profile = ReplyKeyboardMarkup(
keyboard=[
[KeyboardButton(text="Панель Bybit"), KeyboardButton(text="Профиль")],
[KeyboardButton(text="Подключить платформу Bybit")],
],
resize_keyboard=True,
one_time_keyboard=True,
input_field_placeholder="Выберите пункт меню...",
)