Documentation ¶
Index ¶
- func PromptUserAndPassword(hostName string) (string, string)
- type AuthorizationsService
- type Client
- type ClientGenerator
- type Issue
- type IssuesService
- type NewPullRequest
- type NewRelease
- type ProjectsService
- type PullRequest
- type PullRequestsService
- type Release
- type RepositoriesService
- type Repository
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func PromptUserAndPassword ¶
Types ¶
type AuthorizationsService ¶ added in v0.0.3
type Client ¶
type Client interface { GetRepositories() RepositoriesService GetPullRequests() PullRequestsService GetIssues() IssuesService GetProjects() ProjectsService GetAuthorizations() AuthorizationsService }
type ClientGenerator ¶ added in v0.0.3
type IssuesService ¶ added in v0.0.3
type NewPullRequest ¶ added in v0.0.2
type NewRelease ¶ added in v0.0.2
func (*NewRelease) GetBody ¶ added in v0.0.2
func (nr *NewRelease) GetBody() string
func (*NewRelease) GetHTMLURL ¶ added in v0.0.2
func (nr *NewRelease) GetHTMLURL() string
func (*NewRelease) GetID ¶ added in v0.0.2
func (nr *NewRelease) GetID() int
func (*NewRelease) GetName ¶ added in v0.0.2
func (nr *NewRelease) GetName() string
func (*NewRelease) GetTagName ¶ added in v0.0.2
func (nr *NewRelease) GetTagName() string
type ProjectsService ¶ added in v0.0.3
type PullRequest ¶
type PullRequestsService ¶ added in v0.0.3
type RepositoriesService ¶ added in v0.0.3
type RepositoriesService interface { Get(ctx context.Context, owner, repo string) (Repository, error) GetURL(owner, repo string) (string, error) GetWikisURL(owner, repo string) (string, error) GetMilestonesURL(owner, repo string) (string, error) GetMilestoneURL(owner, repo string, no int) (string, error) GetCommitsURL(owner, repo string) (string, error) Create(ctx context.Context, repo string) (Repository, error) CreateRelease(ctx context.Context, owner, repo string, newRelease *NewRelease) (Release, error) }
type Repository ¶
Click to show internal directories.
Click to hide internal directories.