shithub: furgit

ref: 1a8842b33d6d83d1754267e087fd7b4f73ca9e91
dir: /refstore/files/batch.go/

View raw version
package files

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

type Batch struct {
	store  *Store
	ops    []txOp
	closed bool
}

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