Files
nextjs-python-web-template/pkgs/clan-cli/clan_cli/webui/routers/health.py
Jörg Thalheim acc648fc6b integrate webserver into cli
integrate webserver into cli
2023-08-24 11:31:41 +02:00

9 lines
120 B
Python

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