| 44 | } |
| 45 | |
| 46 | type Commit struct { |
| 47 | _type string |
| 48 | Tree string |
| 49 | Parents []string |
| 50 | Author string |
| 51 | Committer string |
| 52 | Message string |
| 53 | size string |
| 54 | } |
| 55 | |
| 56 | func (c Commit) Type() string { |
| 57 | return c._type |
nothing calls this directly
no outgoing calls
no test coverage detected