blob: 753e3b020ef670b91fd512c4aa2db1c0894471c2 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
package service
import objectid "codeberg.org/lindenii/furgit/object/id"
// PlannedUpdate is one requested ref update planned for this execution.
type PlannedUpdate struct {
Name string
OldID objectid.ObjectID
NewID objectid.ObjectID
Delete bool
}
|