Add /_health endpoint

This commit is contained in:
Matthew Wild
2021-03-10 14:22:38 +00:00
parent 025172592f
commit c70228fed7

View File

@@ -163,3 +163,7 @@ async def avatar(from_: str, code: str) -> quart.Response:
response.set_data(data)
return response
@bp.route("/_health")
async def health() -> str:
return "OK"