drone-email/pkg/domain/commit.go

11 lines
136 B
Go
Raw Normal View History

2022-06-27 19:42:59 +00:00
package domain
type Commit struct {
Author *Author
Branch string
Link string
Message string
Ref string
Sha string
}