(req *http.Request)
| 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) |
| 184 | } |
| 185 | |
| 186 | type closeIdleRoundTripper struct { |
| 187 | closed bool |
no test coverage detected