shithub: furgit

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