()
| 105 | |
| 106 | impl ReqwestHttpClient { |
| 107 | pub fn new() -> Self { |
| 108 | Self { |
| 109 | client: build_reqwest_client(None, None).expect("failed to build default HTTP client"), |
| 110 | } |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | impl Default for ReqwestHttpClient { |
nothing calls this directly
no test coverage detected