| 3 | import "time" |
| 4 | |
| 5 | type Commit struct { |
| 6 | ID string `json:"id"` |
| 7 | ShortID string `json:"short_id"` |
| 8 | Title string `json:"title"` |
| 9 | AuthorName string `json:"author_name"` |
| 10 | AuthorEmail string `json:"author_email"` |
| 11 | CommitterName string `json:"committer_name"` |
| 12 | CommitterEmail string `json:"committer_email"` |
| 13 | Message string `json:"message"` |
| 14 | Additions int `json:"additions"` |
| 15 | Deletions int `json:"deletions"` |
| 16 | Total int `json:"total"` |
| 17 | ProjectID int `json:"project_id"` |
| 18 | CommittedDate time.Time `json:"committed_date"` |
| 19 | CreatedAt time.Time `json:"created_at"` |
| 20 | } |
nothing calls this directly
no outgoing calls
no test coverage detected