9 lines
164 B
Python
9 lines
164 B
Python
from fastapi import APIRouter
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.get("/healthz", include_in_schema=False)
|
|
def healthz() -> dict[str, str]:
|
|
return {"status": "ok"}
|