feat(admin): add admin panel and reminder system

This commit is contained in:
2026-07-30 19:46:16 +05:00
parent ecc006287b
commit e79624a13a
17 changed files with 582 additions and 148 deletions
+1 -2
View File
@@ -8,13 +8,12 @@ from tgbot.utils.misc.bot_logging import bot_logger
# Команды для обычных пользователей
user_commands = [
BotCommand(command="start", description="♻️ Перезапуск бота"),
# BotCommand(command="menu", description="🌀 Получение клавиатуры"),
]
# Команды для админов
admin_commands = [
BotCommand(command="start", description="♻️ Перезапуск бота"),
# BotCommand(command="menu", description="🌀 Получение клавиатуры"),
BotCommand(command="admin", description="⚙️ Панель управления"),
BotCommand(command="log", description="🖨 Получить логи"),
]