(req *http.Request)
| 30 | // HttpClient is a base HTTP client interface (usually used for test purposes). |
| 31 | type HttpClient interface { |
| 32 | Do(req *http.Request) (*http.Response, error) |
| 33 | } |
| 34 | |
| 35 | // Config defines the config options of the ghupdate plugin. |
no outgoing calls
no test coverage detected