12 lines
204 B
Python
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.
|
|
"""
|