blob: 4ec98fb0efdccb07de8e45012d7ff346278f60da (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
// 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 objectstore/Store.ReadReaderContent,
// or appropriate streaming write APIs.
type Blob struct {
Data []byte
}
|