diff options
| author | 2026-03-22 23:10:37 +0000 | |
|---|---|---|
| committer | 2026-03-22 23:13:19 +0000 | |
| commit | ab6f8dde0cdc554084c4455c76feef0099db70d9 (patch) | |
| tree | 6c6a207d6094a8d99b1b1b43f8bdee93c19871e0 /objectstore/chain/chain.go | |
| parent | commitgraph: Tighten docs and use a value-ish Filter return (diff) | |
| signature | No signature | |
*: Fixup ownership of compositional backends v0.1.88
Diffstat (limited to 'objectstore/chain/chain.go')
| -rw-r--r-- | objectstore/chain/chain.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/objectstore/chain/chain.go b/objectstore/chain/chain.go index 2b17369d..00e98b91 100644 --- a/objectstore/chain/chain.go +++ b/objectstore/chain/chain.go @@ -1,4 +1,5 @@ -// Package chain provides a wrapper object storage backend to query a chain of backends. +// Package chain provides a wrapper object storage backend to query a chain of +// backends. package chain import ( @@ -6,6 +7,8 @@ import ( ) // Chain queries multiple object databases in order. +// +// Chain borrows its backend stores. type Chain struct { backends []objectstore.Store } |
