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

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

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

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