shithub: furgit

ref: 0b2dcaabe23d45f6feb2273031854b14b512e3ff
dir: /ref/store/files/batch.go/

View raw version
package files

import refstore "codeberg.org/lindenii/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)