(ctx context.Context, owner string, repo string, number int)
| 11 | type PullRequestService interface { |
| 12 | List(ctx context.Context, owner string, repo string, opt *githubApi.PullRequestListOptions) ([]*githubApi.PullRequest, *githubApi.Response, error) |
| 13 | Get(ctx context.Context, owner string, repo string, number int) (*githubApi.PullRequest, *githubApi.Response, error) |
| 14 | } |
no outgoing calls