shithub: furgit

ref: 8f577284f47f699855dcb3ceda21aa9d8be77c2f
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)