shithub: furgit

ref: df1f2fb3daa1acd25c88510f259d5535fb482126
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)