(connection, request)
| 185 | |
| 186 | |
| 187 | def health_check(connection, request): |
| 188 | if request.path == "/healthz": |
| 189 | return connection.respond(http.HTTPStatus.OK, "OK\n") |
| 190 | |
| 191 | |
| 192 | async def main(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…