diff options
| author | 2026-03-30 15:53:50 +0000 | |
|---|---|---|
| committer | 2026-03-30 15:53:50 +0000 | |
| commit | 1d2912f952ccc11f8b6346aa8160efd1e58acfe0 (patch) | |
| tree | 3ce48c505428547614703a076d14ee3961765664 /object/store/packed/quarantine.go | |
| parent | object/store/packed/internal/ingest: And of course I forgot to goimports (diff) | |
| signature | No signature | |
object/store/packed: Add quarantine
Diffstat (limited to 'object/store/packed/quarantine.go')
| -rw-r--r-- | object/store/packed/quarantine.go | 19 |
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) |
