Commit represent a commit message
| 28 | |
| 29 | // Commit represent a commit message |
| 30 | type Commit interface { |
| 31 | Message() string |
| 32 | Header() string |
| 33 | Body() string |
| 34 | Footer() string |
| 35 | Type() string |
| 36 | Scope() string |
| 37 | Description() string |
| 38 | Notes() []Note |
| 39 | IsBreakingChange() bool |
| 40 | } |
| 41 | |
| 42 | // Parser parses given commit message |
| 43 | type Parser interface { |
no outgoing calls
no test coverage detected