blob: 03d17df6b3858a99dabca539e951674e6cd08710 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
package object
// Blob represents a Git blob object.
type Blob struct {
Data []byte
}
// ObjectType returns TypeBlob.
func (blob *Blob) ObjectType() Type {
_ = blob
return TypeBlob
}
|