backend/med_backend/web/api/monitoring/views.py

13 lines
204 B
Python

from fastapi import APIRouter
router = APIRouter()
@router.get("/health")
def health_check() -> None:
"""
Checks the health of a project.
It returns 200 if the project is healthy.
"""