"""v1 REST router aggregator.""" from fastapi import APIRouter from app.api.v1.health import router as health_router router = APIRouter() router.include_router(health_router)