(*http.Request)
| 13 | // Doer abstracts the HTTP client used to execute requests. |
| 14 | type Doer interface { |
| 15 | Do(*http.Request) (*http.Response, error) |
| 16 | } |
| 17 | |
| 18 | // GetBytes performs a GET request with the supplied headers, requires a |
no outgoing calls