diff options
| author | 2026-06-07 06:01:13 +0000 | |
|---|---|---|
| committer | 2026-06-07 06:01:13 +0000 | |
| commit | cdc65f9e8de256918af833aaee97588861fd6aa5 (patch) | |
| tree | 2e4dbcfa1eb9026b8482b0cd3ec99586a516782c /object/blob | |
| parent | ref/name: Fix error (diff) | |
*: Refactor file granularity
Diffstat (limited to 'object/blob')
| -rw-r--r-- | object/blob/blob.go | 7 | ||||
| -rw-r--r-- | object/blob/doc.go | 4 |
2 files changed, 6 insertions, 5 deletions
diff --git a/object/blob/blob.go b/object/blob/blob.go index 4ba132d1..793935fe 100644 --- a/object/blob/blob.go +++ b/object/blob/blob.go @@ -1,13 +1,10 @@ -// 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. +// Consider using [lindenii.org/go/furgit/object/fetch] +// for streaming access, or appropriate streaming write APIs. // // Labels: MT-Unsafe. type Blob struct { diff --git a/object/blob/doc.go b/object/blob/doc.go new file mode 100644 index 00000000..8eea353e --- /dev/null +++ b/object/blob/doc.go @@ -0,0 +1,4 @@ +// Package blob provides +// representations, parsers, and serializers +// for blob objects. +package blob |
