mirror of
https://github.com/FutureOfMedTech-FITM-hack/backend.git
synced 2025-02-24 07:40:33 +03:00
13 lines
204 B
Python
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.
|
||
|
"""
|