"""Service Auto module router factory.""" from fastapi import APIRouter def create_service_auto_router() -> APIRouter: router = APIRouter() from .comanda import router as comanda_router router.include_router(comanda_router, tags=["service-auto"]) return router