changeloguru/internal/git/author.go

10 lines
96 B
Go

package git
import "time"
type Author struct {
When time.Time
Name string
Email string
}