Markus Pesch
daf58bb4ca
All checks were successful
continuous-integration/drone/push Build is passing
11 lines
136 B
Go
11 lines
136 B
Go
package domain
|
|
|
|
type Commit struct {
|
|
Author *Author
|
|
Branch string
|
|
Link string
|
|
Message string
|
|
Ref string
|
|
Sha string
|
|
}
|