aiozab/routers/__init__.py
2025-02-23 12:05:49 +05:00

12 lines
179 B
Python

__all__ = ("router",)
from aiogram import Router
from .commands import router as commands_router
router = Router(name=__name__)
router.include_routers(
commands_router,
)