Add healthcheck

This commit is contained in:
2022-02-05 09:51:38 +03:00
parent 889dfeadcd
commit 63be8fda4f
5 changed files with 108 additions and 1 deletions

View File

@@ -67,6 +67,11 @@ async def convert(
)
@router.get("/healthcheck")
async def healthcheck():
return "Ok!"
app = FastAPI()
app.include_router(router)