ref: 18c460be20d78813afafd04077e9970f1d22f364
dir: /object/blob.go/
package object
// Blob represents a Git blob object.
type Blob struct {
Data []byte
}
// ObjectType returns TypeBlob.
func (blob *Blob) ObjectType() Type {
_ = blob
return TypeBlob
}