shithub: furgit

ref: 1a8842b33d6d83d1754267e087fd7b4f73ca9e91
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)