Инициализация модулей

This commit is contained in:
Whyverum
2024-12-18 12:16:23 +07:00
parent 3637c1d0fd
commit 3c350c3246
7 changed files with 63 additions and 10 deletions

View File

@@ -0,0 +1,13 @@
from aiogram import Router
from .actor_kb_cb import router as actor_kb_cb_router
from .randnum_kb_cb import router as randnum_kb_cb_router
__all__ = ("router", )
router = Router(name="callback_handlers")
# Список подключаемых роутеров сверху-вниз
router.include_routers(
actor_kb_cb_router,
randnum_kb_cb_router,
)