aboutsummaryrefslogtreecommitdiff
path: root/refstore/chain/chain.go
blob: 0feb97c3e63255706e08e081d9832ae8a25abcd2 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// Package chain provides a wrapper reference storage backend to query a chain
// of backends.
package chain

import "codeberg.org/lindenii/furgit/refstore"

// Chain queries multiple reference stores in order.
//
// Chain borrows its backend stores.
type Chain struct {
	backends []refstore.ReadingStore
}