aboutsummaryrefslogtreecommitdiff
path: root/object/id/object_id.go
blob: 926142eff80103b225f15cdbf6cbd19a21eae7c5 (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
}