wip: add parseHeader function

This commit is contained in:
2020-10-31 18:24:55 +00:00
parent 5b086530ee
commit 67c89f0df1
3 changed files with 217 additions and 17 deletions

View File

@@ -3,11 +3,12 @@
package commit
type Commit struct {
Type string
Scope string
Description string
Body string
Footers []Footer
Type string
Scope string
Subject string
Body string
Footers []*Footer
IsBreaking bool
}
type Footer struct {