diff --git a/BotCode/__init__.py b/BotCode/__init__.py index f8ba19b..8f00402 100644 --- a/BotCode/__init__.py +++ b/BotCode/__init__.py @@ -4,12 +4,14 @@ from aiogram import Router from .routers import router as all_routers from .inline import router as inline_routers +from .easteggs import router as easteggs_router # Объявление главного роутера router = Router(name="main_router") # Список подключаемых роутеров сверху-вниз router.include_routers( - all_routers, - inline_routers, -) \ No newline at end of file + inline_routers, + easteggs_router, +) +router.include_router(all_routers) diff --git a/SQLite3/bd.db b/SQLite3/bd.db index 0ace32c..58b17b3 100644 Binary files a/SQLite3/bd.db and b/SQLite3/bd.db differ