diff options
| author | 2026-03-28 04:19:44 +0000 | |
|---|---|---|
| committer | 2026-03-28 04:20:29 +0000 | |
| commit | 402ef2733813d128631ca4aea18c2908c74340d5 (patch) | |
| tree | e03a90b6f41411bd62e7339390802c5c50082850 /object/store/chain/chain.go | |
| parent | object/store: Rename from object/storer (diff) | |
| signature | No signature | |
object/store: Rename back from storer; rename Store to ReadingStore v0.1.118
Diffstat (limited to 'object/store/chain/chain.go')
| -rw-r--r-- | object/store/chain/chain.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/object/store/chain/chain.go b/object/store/chain/chain.go new file mode 100644 index 00000000..1fb7408a --- /dev/null +++ b/object/store/chain/chain.go @@ -0,0 +1,12 @@ +// Package chain provides a wrapper object storage backend to query a chain of +// backends. +package chain + +import objectstore "codeberg.org/lindenii/furgit/object/store" + +// Chain queries multiple object databases in order. +// +// Chain borrows its backend stores. +type Chain struct { + backends []objectstore.ReadingStore +} |
