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