shithub: furgit

ref: 65a6439638a18e4317e144a0117db7604a2f2940
dir: /refstore/files/transaction.go/

View raw version
package files

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

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

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