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