aboutsummaryrefslogtreecommitdiff
path: root/object/store/quarantine.go
diff options
context:
space:
mode:
Diffstat (limited to 'object/store/quarantine.go')
-rw-r--r--object/store/quarantine.go20
1 files changed, 0 insertions, 20 deletions
diff --git a/object/store/quarantine.go b/object/store/quarantine.go
deleted file mode 100644
index 5fa97ee7..00000000
--- a/object/store/quarantine.go
+++ /dev/null
@@ -1,20 +0,0 @@
-package objectstore
-
-// Quarantine represents one quarantined write that accepts both object-
-// wise and pack-wise writes.
-type Quarantine interface {
- BaseQuarantine
- Writer
-}
-
-// QuarantineOptions controls the options for one coordinated quarantine creation.
-type QuarantineOptions struct {
- Object ObjectQuarantineOptions
- Pack PackQuarantineOptions
-}
-
-// Quarantiner creates coordinated quarantines that support both object-
-// wise and pack-wise writes.
-type Quarantiner interface {
- BeginQuarantine(opts QuarantineOptions) (Quarantine, error)
-}