aboutsummaryrefslogtreecommitdiff
path: root/headers.go
blob: 5a8b46eb3a8695141ebc39c35bd424e783593696 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
package furgit

// ExtraHeader represents an extra header in a Git object.
type ExtraHeader struct {
	// Key represents the header key.
	Key string
	// Value represents the header value.
	Value []byte
}