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