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