From 0c46a70f5396447030a709406ef903a8edc4e280 Mon Sep 17 00:00:00 2001 From: Vladless Date: Sat, 26 Oct 2024 02:39:35 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B0=D0=B4=D0=BC=D0=B8=D0=BD=D0=BA=D0=B0=20?= =?UTF-8?q?=D0=B2=20=D0=B1=D0=BE=D1=82=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bot.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bot.py b/bot.py index 4caba5f1..11d67ae7 100644 --- a/bot.py +++ b/bot.py @@ -9,7 +9,7 @@ dp = Dispatcher(bot=bot, storage=storage) router = Router() from handlers import (backup_handler, key_management, keys, notifications, pay, - profile, start) + profile, start, admin) dp.include_router(start.router) dp.include_router(profile.router) @@ -17,4 +17,5 @@ dp.include_router(keys.router) dp.include_router(key_management.router) dp.include_router(pay.router) dp.include_router(notifications.router) -dp.include_router(backup_handler.router) \ No newline at end of file +dp.include_router(backup_handler.router) +dp.include_router(admin.router) \ No newline at end of file