blob: 043f3d511a8209f028b170edf13bfabe9f588a56 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
package service
import objectid "codeberg.org/lindenii/furgit/object/id"
// PlannedUpdate is one ref update that would be applied once ref writing
// exists.
type PlannedUpdate struct {
Name string
OldID objectid.ObjectID
NewID objectid.ObjectID
Delete bool
}
|