blob: 33a54225d9f5c1b5dd3989ee36ab0d6c00bb5574 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
package objectid
//#nosec G505
// ObjectID represents a Git object ID.
//
//nolint:recvcheck
type ObjectID struct {
algo Algorithm
data [maxObjectIDSize]byte
}
|