Files
cemetery_backend/app/api/health.py
2026-01-26 13:33:54 +03:00

12 lines
145 B
Python

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