DefaultHTTPClient is the default HTTP client implementation
| 18 | |
| 19 | // DefaultHTTPClient is the default HTTP client implementation |
| 20 | type DefaultHTTPClient struct { |
| 21 | client *http.Client |
| 22 | } |
| 23 | |
| 24 | // NewDefaultHTTPClient creates a new default HTTP client |
| 25 | func NewDefaultHTTPClient(timeout time.Duration) *DefaultHTTPClient { |
nothing calls this directly
no outgoing calls
no test coverage detected