HTTPClient interface for making HTTP requests
| 13 | |
| 14 | // HTTPClient interface for making HTTP requests |
| 15 | type HTTPClient interface { |
| 16 | Do(req *HTTPRequest) (*HTTPResponse, error) |
| 17 | } |
| 18 | |
| 19 | // HTTPRequest represents an HTTP request |
| 20 | type HTTPRequest struct { |
no outgoing calls
no test coverage detected