aboutsummaryrefslogtreecommitdiff
path: root/object/blob/blob.go
blob: 793935fe7dcf6b52d41cad9021b935a9686efd95 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package blob

// Blob represents a Git blob object.
//
// Blob is fully materialized in memory.
// Consider using [lindenii.org/go/furgit/object/fetch]
// for streaming access, or appropriate streaming write APIs.
//
// Labels: MT-Unsafe.
type Blob struct {
	Data []byte
}