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

import (
	"codeberg.org/lindenii/furgit/ref/store"
)

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

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