Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BitbucketRecord ¶
type BitbucketRecord struct {
Repository struct {
Slug string `json:"slug"`
Owner string `json:"owner"`
} `json:"repository"`
}
func (*BitbucketRecord) Decode ¶ added in v0.0.2
func (r *BitbucketRecord) Decode(req *http.Request) error
func (*BitbucketRecord) GetName ¶
func (r *BitbucketRecord) GetName() string
func (*BitbucketRecord) GetURL ¶
func (r *BitbucketRecord) GetURL() string
type DockerRecord ¶
type DockerRecord struct {
Repository struct {
Name string `json:"repo_name"`
URL string `json:"repo_url"`
} `json:"repository"`
}
func (*DockerRecord) Decode ¶ added in v0.0.2
func (r *DockerRecord) Decode(req *http.Request) error
func (*DockerRecord) GetName ¶
func (r *DockerRecord) GetName() string
func (*DockerRecord) GetURL ¶
func (r *DockerRecord) GetURL() string
type GithubRecord ¶
type GithubRecord struct {
Repository struct {
Name string `json:"name"`
URL string `json:"git_url"`
} `json:"repository"`
}
func (*GithubRecord) Decode ¶ added in v0.0.2
func (r *GithubRecord) Decode(req *http.Request) error
func (*GithubRecord) GetName ¶
func (r *GithubRecord) GetName() string
func (*GithubRecord) GetURL ¶
func (r *GithubRecord) GetURL() string
type GitlabRecord ¶ added in v0.0.2
type GitlabRecord struct {
Repository struct {
Name string `json:"name"`
URL string `json:"git_ssh_url"`
} `json:"repository"`
}
func (*GitlabRecord) Decode ¶ added in v0.0.2
func (r *GitlabRecord) Decode(req *http.Request) error
func (*GitlabRecord) GetName ¶ added in v0.0.2
func (r *GitlabRecord) GetName() string
func (*GitlabRecord) GetURL ¶ added in v0.0.2
func (r *GitlabRecord) GetURL() string
Click to show internal directories.
Click to hide internal directories.