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