aboutsummaryrefslogtreecommitdiff
path: root/refstore/chain/chain.go
blob: 882d4b56a9e284697c1b8a2bb037c2d3cc7302b3 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// 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.
type Chain struct {
	backends []refstore.ReadingStore
}