hesabixArc/hesabixAPI/adapters/api/v1/health.py
2025-09-15 13:53:54 +03:30

9 lines
185 B
Python

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