blob: 2afe7e683eca5402e7661954ae612bccd83bd317 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package service
import objectid "lindenii.org/go/furgit/object/id"
// CommandResult is one per-command execution result.
type CommandResult struct {
Name string
Error string
RefName string
OldID *objectid.ObjectID
NewID *objectid.ObjectID
ForcedUpdate bool
}
|