(connection, request)
| 13 | |
| 14 | |
| 15 | def health_check(connection, request): |
| 16 | if request.path == "/healthz": |
| 17 | return connection.respond(http.HTTPStatus.OK, "OK\n") |
| 18 | |
| 19 | |
| 20 | async def main(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…