kathy-ythz5w/endpoints/services.get.py
2025-03-27 13:45:20 -05:00

9 lines
196 B
Python

# Entity: HealthCheck
from fastapi import APIRouter, status
router = APIRouter()
@router.get("/api/health", status_code=status.HTTP_200_OK)
async def health_check():
return {"status": "OK"}