(err: BoxError)
| 64 | } |
| 65 | |
| 66 | async fn handle_cache_error(err: BoxError) -> Response { |
| 67 | (StatusCode::INTERNAL_SERVER_ERROR, format!("Cache error: {}", err)) |
| 68 | .into_response() |
| 69 | } |
| 70 | |
| 71 | async fn index() -> Response { |
| 72 | ( |
nothing calls this directly
no test coverage detected