| 11 | /// HTTP Client wrapper for making requests |
| 12 | #[derive(Clone)] |
| 13 | pub struct HttpClient { |
| 14 | client: Client, |
| 15 | runtime: Arc<tokio::runtime::Runtime>, |
| 16 | } |
| 17 | |
| 18 | /// Handle for canceling an in-flight HTTP request. |
| 19 | pub struct InFlightRequest { |
nothing calls this directly
no outgoing calls
no test coverage detected