aboutsummaryrefslogtreecommitdiff
path: root/refstore/files/transaction.go
blob: 09b92caf792253cfe9c67a53fa34565dc0de63b1 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package files

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

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

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