aboutsummaryrefslogtreecommitdiff
package id

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