(*http.Request)
| 32 | // Transport defines the interface for an API client. |
| 33 | type Transport interface { |
| 34 | Perform(*http.Request) (*http.Response, error) |
| 35 | } |
| 36 | |
| 37 | // Instrumented allows to retrieve the current transport Instrumentation |
no outgoing calls