Request defines the API request.
| 33 | |
| 34 | // Request defines the API request. |
| 35 | type Request interface { |
| 36 | Do(ctx context.Context, transport Transport) (*Response, error) |
| 37 | } |
| 38 | |
| 39 | // newRequest creates an HTTP request. |
| 40 | func newRequest(method, path string, body io.Reader) (*http.Request, error) { |
no outgoing calls
no test coverage detected