(hostname, method, p string, body io.Reader, data interface{})
| 55 | type githubApiClient interface { |
| 56 | REST(hostname, method, p string, body io.Reader, data interface{}) error |
| 57 | RESTWithNext(hostname, method, p string, body io.Reader, data interface{}) (string, error) |
| 58 | } |
| 59 | |
| 60 | // httpClient makes HTTP calls to all non-GitHub API endpoints |
no outgoing calls
no test coverage detected