Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
func (*Client) FetchNotifications ¶
func (c *Client) FetchNotifications() ([]*Repository, error)
func (*Client) MarkNotificationAsRead ¶
func (*Client) SearchPullRequestsMine ¶
func (c *Client) SearchPullRequestsMine() ([]*Repository, error)
func (*Client) SearchPullRequestsReviewRequested ¶
func (c *Client) SearchPullRequestsReviewRequested() ([]*Repository, error)
type Notification ¶
type Notification struct { ID string Reason string Title string URL string Repository *Repository }
type PullRequest ¶
type PullRequest struct { Title string URL string Repository *Repository }
type Repository ¶
type Repository struct { Owner string Name string PullRequests []*PullRequest Notifications []*Notification }
Click to show internal directories.
Click to hide internal directories.