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

13 lines
204 B
Python
Raw Normal View History

2022-12-07 20:16:44 +03:00
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.
"""