()
| 20 | |
| 21 | impl HttpClient { |
| 22 | pub fn new() -> Self { |
| 23 | Self {} |
| 24 | } |
| 25 | |
| 26 | pub fn get(&self, host: String, port: u16, path: String) -> std::io::Result<HttpResponse> { |
| 27 | let ips = lookup_host(&host)?.into_iter(); |
nothing calls this directly
no outgoing calls
no test coverage detected