(hostname, method, p string, body io.Reader, data interface{})
| 54 | // githubApiClient makes REST calls to the GitHub API |
| 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 |
no outgoing calls