from fastapi import APIRouter from app.api.v1.endpoints import auth, health, items, users api_router = APIRouter() # Include routers for different endpoints api_router.include_router(auth.router, prefix="/auth", tags=["auth"]) api_router.include_router(users.router, prefix="/users", tags=["users"]) api_router.include_router(items.router, prefix="/items", tags=["items"]) api_router.include_router(health.router, prefix="/health", tags=["health"])