Files
2024-11-17 02:31:42 +03:00

10 lines
176 B
Python

import aiogram
import app.routing.base.routers
routing_router = aiogram.Router(name=__package__)
routing_router.include_routers(
app.routing.base.routers.base_router,
)