generate openapi

This commit is contained in:
Jörg Thalheim
2023-08-25 11:39:46 +02:00
parent 33b43ae146
commit aa14e7ddc7
5 changed files with 61 additions and 5 deletions

View File

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