from fastapi import APIRouter from app.api import products, health api_router = APIRouter() api_router.include_router(health.router, prefix="/health", tags=["health"]) api_router.include_router(products.router, prefix="/products", tags=["products"])