from fastapi import APIRouter from app.api.endpoints import auth, health, users from app.core.config import settings # Create the main API router api_router = APIRouter() # Include all endpoint routers api_router.include_router(health.router, tags=["Health"]) api_router.include_router( auth.router, prefix=f"{settings.API_V1_PREFIX}/auth", tags=["Authentication"] ) api_router.include_router( users.router, prefix=f"{settings.API_V1_PREFIX}/users", tags=["Users"] )