()
| 53 | } |
| 54 | |
| 55 | pub(crate) async fn health() -> impl IntoResponse { |
| 56 | let health = Health { healthy: true }; |
| 57 | (StatusCode::OK, Json(health)) |
| 58 | } |
| 59 | |
| 60 | async fn graphql_handler( |
| 61 | schema: Extension<ServiceSchema>, |
nothing calls this directly
no outgoing calls
no test coverage detected