changeloguru/internal/git/author.go

10 lines
96 B
Go

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