aboutsummaryrefslogtreecommitdiff
path: root/ref/store/files/batch.go
blob: 6f8fa2a372e4e45df1308e77f00d625ee32faa0f (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package files

import refstore "lindenii.org/go/furgit/ref/store"

// Batch stages files-store updates for one non-atomic apply.
type Batch struct {
	store *Store
	ops   []queuedUpdate
}

var _ refstore.Batch = (*Batch)(nil)