blob: bd8b8d87c13509ee418fcc460508cd7944df00a4 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
// Package signature provides Git author, committer, and tagger signatures.
package signature
// Signature represents a Git signature (author/committer/tagger).
type Signature struct {
Name []byte
Email []byte
WhenUnix int64
OffsetMinutes int32
}
|