stream-fusion-old/stream_fusion/web/api/monitoring/views.py
LimeDrive 6fe4fe55f3 init
2024-07-09 04:13:29 +02:00

12 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.
"""