aboutsummaryrefslogtreecommitdiff
path: root/object/store/writer.go
diff options
context:
space:
mode:
Diffstat (limited to 'object/store/writer.go')
-rw-r--r--object/store/writer.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/object/store/writer.go b/object/store/writer.go
new file mode 100644
index 00000000..9fa05aba
--- /dev/null
+++ b/object/store/writer.go
@@ -0,0 +1,8 @@
+package objectstore
+
+// Writer represents a store that could perform both pack ingestions
+// and individual object writes.
+type Writer interface {
+ PackWriter
+ ObjectWriter
+}