func(req *http.Request) (*http.Response, error)
| 178 | } |
| 179 | |
| 180 | type roundTripFunc func(req *http.Request) (*http.Response, error) |
| 181 | |
| 182 | func (f roundTripFunc) RoundTrip(req *http.Request) (*http.Response, error) { |
| 183 | return f(req) |
no outgoing calls
no test coverage detected