Template
mirror of
https://github.com/djimboy/djimbo_template_aio3.git
synced 2026-08-28 16:07:43 +00:00
Update
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
# - *- 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)
|
||||
Reference in New Issue
Block a user