aboutsummaryrefslogtreecommitdiff
path: root/refstore/files/transaction.go
blob: 1babfe60ecb07a5913879d1ac87a94a5b4d89df6 (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   []queuedUpdate
}

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