mirror of
https://github.com/djimboy/djimbo_template_aio3.git
synced 2026-07-25 01:34:30 +00:00
23 lines
585 B
Python
23 lines
585 B
Python
# - *- coding: utf- 8 - *-
|
|
from aiogram.utils.keyboard import ReplyKeyboardBuilder
|
|
|
|
from tgbot.utils.const_functions import rkb
|
|
|
|
# Тестовые админ реплай кнопки
|
|
admin_rep = ReplyKeyboardBuilder(
|
|
).row(
|
|
rkb("Admin Reply 1"),
|
|
rkb("Admin Reply 2"),
|
|
).row(
|
|
rkb("⬅ Главное меню"),
|
|
).as_markup(resize_keyboard=True)
|
|
|
|
# Тестовые юзер реплай кнопки
|
|
user_rep = ReplyKeyboardBuilder(
|
|
).row(
|
|
rkb("User Reply 1"),
|
|
rkb("User Reply 2"),
|
|
).row(
|
|
rkb("⬅ Главное меню"),
|
|
).as_markup(resize_keyboard=True)
|