blob: 71c1f6f846fa41cae2ada0d95e3e5ce88e2bda8e (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// 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.ReadingStore.ReadReaderContent,
// or appropriate streaming write APIs.
//
// Labels: MT-Unsafe.
type Blob struct {
Data []byte
}
|