9 lines
324 B
Python
Executable File
9 lines
324 B
Python
Executable File
from aiogram.types import ReplyKeyboardMarkup, KeyboardButton
|
|
|
|
|
|
# - кнопки клавиатуры админа
|
|
button_load = KeyboardButton("/Загрузить")
|
|
button_delete = KeyboardButton("/Удалить")
|
|
|
|
button_case_admin = ReplyKeyboardMarkup(resize_keyboard=True).add(button_load).add(button_delete)
|