blob: 86dfa10d0f610a37a16ed05e1f0cc84e7a01c714 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
package service
import objectid "lindenii.org/go/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
}
|