ref: 2a5c12f0152240f54d01653b70b7605103393afd
dir: /object/blob/blob.go/
// Package blob provides representations, parsers, and serializers for blob objects.
package blob
// Blob represents a Git blob object.
//
// This Blob object is fully materialized in memory.
// Consider using objectstorer/Store.ReadReaderContent,
// or appropriate streaming write APIs.
type Blob struct {
Data []byte
}