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

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

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