Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CommitCommentEvent ¶
type CommitCommentEvent struct {
Action *string `json:"action,omitempty"`
Comment *github.RepositoryComment `json:"comment,omitempty"`
Repo *github.Repository `json:"repository,omitempty"`
Sender *github.User `json:"sender,omitempty"`
}
type CommitCommentEventHandler ¶
type CommitCommentEventHandler interface {
HandleCommitCommentEvent(rw http.ResponseWriter, r *http.Request, e *CommitCommentEvent)
}
type IssueCommentEvent ¶
type IssueCommentEvent struct {
Action *string `json:"action,omitempty"`
Issue *github.Issue `json:"issue,omitempty"`
Comment *github.IssueComment `json:"comment,omitempty"`
Repo *github.Repository `json:"repository,omitempty"`
Sender *github.User `json:"sender,omitempty"`
}
type IssueCommentEventHandler ¶
type IssueCommentEventHandler interface {
HandleIssueCommentEvent(rw http.ResponseWriter, r *http.Request, e *IssueCommentEvent)
}
type IssuesEvent ¶
type IssuesEventHandler ¶
type IssuesEventHandler interface {
HandleIssuesEvent(rw http.ResponseWriter, r *http.Request, e *IssuesEvent)
}
Click to show internal directories.
Click to hide internal directories.