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

import "codeberg.org/lindenii/furgit/objectid"

type queuedUpdate struct {
	name      string
	kind      updateKind
	newID     objectid.ObjectID
	oldID     objectid.ObjectID
	newTarget string
	oldTarget string
}