ref: 3ce59c3248dec0eb0f918c42f37f53bc2ac20425
dir: /object/blob/blob.go/
// Package blob provides representations, parsers, and serializers for blob objects.
package blob
// Blob represents a Git blob object.
//
// Blob is fully materialized in memory.
//
// Consider using objectstore.Reader.ReadReaderContent,
// or appropriate streaming write APIs.
//
// Labels: MT-Unsafe.
type Blob struct {
Data []byte
}