from fastapi import APIRouter from app.api.endpoints import items, health api_router = APIRouter() # Include all the endpoint routers api_router.include_router(health.router, prefix="/health", tags=["health"]) api_router.include_router(items.router, prefix="/items", tags=["items"])