shithub: furgit

ref: ab174c473618dd3743881cf44e02c2db4d1ecd5f
dir: /object/blob/blob.go/

View raw version
// 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
}