Files
nextjs-python-web-template/pkgs/clan-cli/clan_cli/webui/routers/health.py
Jörg Thalheim aa14e7ddc7 generate openapi
2023-08-25 11:39:46 +02:00

9 lines
145 B
Python

from fastapi import APIRouter
router = APIRouter()
@router.get("/health", include_in_schema=False)
async def health() -> str:
return "OK"