blob: 7a75be11d5ab0ecf34c5e0c39c4211b4d6ca41a8 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
package service
// Result is one receive-pack execution result.
type Result struct {
UnpackError string
Commands []CommandResult
Planned []PlannedUpdate
Applied bool
}
|