отображение ключей и создание на сутки

This commit is contained in:
Vlad
2024-09-26 02:38:32 +03:00
parent 34f0205f6d
commit 0e43b36901
9 changed files with 58 additions and 7 deletions
+2 -1
View File
@@ -9,7 +9,7 @@ storage = MemoryStorage()
dp = Dispatcher(bot=bot, storage=storage)
router = Router()
from handlers import balance, keys, pay, profile, start
from handlers import balance, keys, pay, profile, start, notifications
from key_management import router as key_management_router
# Регистрация обработчиков
@@ -19,6 +19,7 @@ dp.include_router(keys.router)
dp.include_router(balance.router)
dp.include_router(key_management_router)
dp.include_router(pay.router)
dp.include_router(notifications.router)