aboutsummaryrefslogtreecommitdiff
path: root/object/id/object_id.go
blob: 1171504dc2903389b1b452a14610d8da99177bed (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
package id

// ObjectID represents a Git object ID.
//
//nolint:recvcheck
type ObjectID struct {
	objectFormat ObjectFormat
	data         [MaxObjectIDSize]byte
}