(hostname, method, p string, body io.Reader, data any)
| 55 | // githubApiClient makes REST calls to the GitHub API |
| 56 | type githubApiClient interface { |
| 57 | REST(hostname, method, p string, body io.Reader, data any) error |
| 58 | RESTWithNext(hostname, method, p string, body io.Reader, data any) (string, error) |
| 59 | } |
| 60 |
no outgoing calls