aboutsummaryrefslogtreecommitdiff
path: root/ref/store/chain/chain.go
blob: 6a4a0eed1c898bf39925f20060b678fd281029fe (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/ref/store"

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