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

19 lines
597 B
Python

__all__ = ("router",)
from aiogram import Router
from .base_commands import router as base_commands_router
from .common_commands import router as common_commands_router
from .register_command import router as register_command_router
from .setting_commands import router as setting_commands
from .test_commands import router as test_commands_router
router = Router()
router.include_routers(base_commands_router,
register_command_router,
setting_commands,
test_commands_router)
router.include_router(common_commands_router)