Initial commit

This commit is contained in:
2026-02-21 09:44:18 -03:00
commit 5dfc2cbd85
65 changed files with 11989 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
"""Health and readiness endpoints for orchestration and uptime checks."""
from fastapi import APIRouter
router = APIRouter(prefix="/health", tags=["health"])
@router.get("")
def health() -> dict[str, str]:
"""Returns service liveness status."""
return {"status": "ok"}