| 140 | } |
| 141 | |
| 142 | type Commit struct { |
| 143 | Author User `json:"author"` |
| 144 | Committer User `json:"committer"` |
| 145 | ID string `json:"node_id"` |
| 146 | Info CommitInfo `json:"commit"` |
| 147 | Parents []Parent `json:"parents"` |
| 148 | Repo Repository `json:"repository"` |
| 149 | Sha string `json:"sha"` |
| 150 | URL string `json:"html_url"` |
| 151 | } |
| 152 | |
| 153 | type CommitInfo struct { |
| 154 | Author CommitUser `json:"author"` |
nothing calls this directly
no outgoing calls
no test coverage detected