1package github
2
3import "github.com/shurcooL/githubv4"
4
5type ImportEvent interface {
6 isImportEvent()
7}
8
9type RateLimitingEvent struct {
10 msg string
11}
12
13func (RateLimitingEvent) isImportEvent() {}
14
15type IssueEvent struct {
16 issue
17}
18
19func (IssueEvent) isImportEvent() {}
20
21type IssueEditEvent struct {
22 issueId githubv4.ID
23 userContentEdit
24}
25
26func (IssueEditEvent) isImportEvent() {}
27
28type TimelineEvent struct {
29 issueId githubv4.ID
30 timelineItem
31}
32
33func (TimelineEvent) isImportEvent() {}
34
35type CommentEditEvent struct {
36 commentId githubv4.ID
37 userContentEdit
38}
39
40func (CommentEditEvent) isImportEvent() {}