aboutsummaryrefslogtreecommitdiff
path: root/refstore/files/batch.go
blob: 43eb1a084d842f923513c15091595ae1060e4ed0 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package files

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

type Batch struct {
	store *Store
	ops   []queuedUpdate
}

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