aboutsummaryrefslogtreecommitdiff
path: root/object/blob/blob.go
diff options
context:
space:
mode:
Diffstat (limited to 'object/blob/blob.go')
-rw-r--r--object/blob/blob.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/object/blob/blob.go b/object/blob/blob.go
new file mode 100644
index 00000000..977121fb
--- /dev/null
+++ b/object/blob/blob.go
@@ -0,0 +1,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 objectstorer/Store.ReadReaderContent,
+// or appropriate streaming write APIs.
+type Blob struct {
+ Data []byte
+}