"""Health endpoint — used by deploy.sh's health checks.""" from fastapi import APIRouter from app.config import get_settings router = APIRouter() @router.get("/health") async def health(): s = get_settings() return {"status": "ok", "service": s.SERVICE_NAME, "version": "2.0.0", "env": s.ENV}