RoundTripper is the interface of req's Client.
| 1651 | |
| 1652 | // RoundTripper is the interface of req's Client. |
| 1653 | type RoundTripper interface { |
| 1654 | RoundTrip(*Request) (*Response, error) |
| 1655 | } |
| 1656 | |
| 1657 | // RoundTripFunc is a RoundTripper implementation, which is a simple function. |
| 1658 | type RoundTripFunc func(req *Request) (resp *Response, err error) |
no outgoing calls
no test coverage detected
searching dependent graphs…