Added sqlalchemy dependency

This commit is contained in:
2023-11-12 18:23:05 +01:00
committed by Luis
parent 42b2f8de1a
commit 4e97beb655
2 changed files with 3 additions and 1 deletions

View File

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