aboutsummaryrefslogtreecommitdiff
path: root/object/store/packed/quarantine.go
diff options
context:
space:
mode:
Diffstat (limited to 'object/store/packed/quarantine.go')
-rw-r--r--object/store/packed/quarantine.go19
1 files changed, 19 insertions, 0 deletions
diff --git a/object/store/packed/quarantine.go b/object/store/packed/quarantine.go
new file mode 100644
index 00000000..a8f6d08c
--- /dev/null
+++ b/object/store/packed/quarantine.go
@@ -0,0 +1,19 @@
+package packed
+
+import (
+ "os"
+
+ objectstore "codeberg.org/lindenii/furgit/object/store"
+)
+
+var _ objectstore.PackQuarantiner = (*Store)(nil)
+
+type packQuarantine struct {
+ *Store
+
+ parent *Store
+ tempName string
+ tempRoot *os.Root
+}
+
+var _ objectstore.PackQuarantine = (*packQuarantine)(nil)