func(*http.Request) (*http.Response, error)
| 115 | } |
| 116 | |
| 117 | type funcClient func(*http.Request) (*http.Response, error) |
| 118 | |
| 119 | func (f funcClient) Do(req *http.Request) (*http.Response, error) { |
| 120 | return f(req) |
no outgoing calls
no test coverage detected