HTTPTransporter represents a wrapper around *http.Transport. It is used to add some pre and postprocessing logic to http requests / responses.
| 282 | // HTTPTransporter represents a wrapper around *http.Transport. |
| 283 | // It is used to add some pre and postprocessing logic to http requests / responses. |
| 284 | type HTTPTransporter interface { |
| 285 | http.RoundTripper |
| 286 | |
| 287 | // Transport what this struct wraps |
| 288 | Transport() *http.Transport |
| 289 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…