Transport defines the interface for an API client.
| 31 | |
| 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 |
| 38 | type Instrumented elastictransport.Instrumented |
no outgoing calls
no test coverage detected