Files
GenExam-IA/backend/app/api/routes/health.py
T
2026-05-13 13:43:32 +02:00

9 lines
158 B
Python

from fastapi import APIRouter
router = APIRouter(tags=["health"])
@router.get("/health")
def health_check() -> dict[str, str]:
return {"status": "ok"}