/admin. GUI интерфейс в боте

This commit is contained in:
Vladless
2024-10-27 22:45:16 +03:00
parent 146512b2ab
commit c678a9bfce
6 changed files with 462 additions and 19 deletions
+3 -1
View File
@@ -8,12 +8,14 @@ storage = MemoryStorage()
dp = Dispatcher(bot=bot, storage=storage)
router = Router()
from handlers.admin import admin
from handlers.admin import admin, admin_panel, user_editor
from handlers.keys import key_management, keys
from handlers import (notifications, pay,
profile, start, commands)
dp.include_router(admin.router)
dp.include_router(admin_panel.router)
dp.include_router(user_editor.router)
dp.include_router(commands.router)
dp.include_router(start.router)
dp.include_router(profile.router)