hesabixArc/hesabixAPI/adapters/api/v1/health.py

9 lines
185 B
Python
Raw Normal View History

2025-09-15 13:53:54 +03:30
from fastapi import APIRouter
router = APIRouter(prefix="/health", tags=["health"])
@router.get("", summary="Health check")
def health() -> dict[str, str]:
return {"status": "ok"}