Add Pagination Options for List Requests #205

Merged
lunny merged 36 commits from spawn2kill/go-sdk:pagination into master 2020-02-05 08:00:00 +00:00
Showing only changes of commit 49aa11d0b5 - Show all commits

View File

@ -80,7 +80,7 @@ func (c *Client) DeleteLabel(owner, repo string, id int64) error {
_, err := c.getResponse("DELETE", fmt.Sprintf("/repos/%s/%s/labels/%d", owner, repo, id), nil, nil)
return err
}
// ListIssueLabelsOptions options for listing issues' labels
type ListIssueLabelsOptions struct {
ListOptions
}