Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func PromptUserAndPassword ¶
Types ¶
type Client ¶
type Client interface {
GetPullRequests(ctx context.Context, owner, repo string) ([]PullRequest, error)
GetIssues(ctx context.Context, owner, repo string) ([]Issue, error)
GetRepository(ctx context.Context, owner, repo string) (Repository, error)
GetRepositoryURL(owner, repo string) (string, error)
GetIssuesURL(owner, repo string) (string, error)
GetIssueURL(owner, repo string, no int) (string, error)
GetPullRequestsURL(owner, repo string) (string, error)
GetPullRequestURL(owner, repo string, no int) (string, error)
CreateToken(ctx context.Context) (string, error)
}
type PullRequest ¶
type Repository ¶
type Repository interface {
GetHTMLURL() string
}
Click to show internal directories.
Click to hide internal directories.