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

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

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