Add GET endpoint for service

This commit is contained in:
Backend IM Bot 2025-03-27 13:40:33 -05:00
parent ca83c9e70e
commit 99200e44e2

9
endpoints/service.get.py Normal file
View File

@ -0,0 +1,9 @@
# 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"}