ref: c3731c4eff12cc9e6636f89128948d86596ad860
dir: /receivepack/service/result.go/
package service
import (
"codeberg.org/lindenii/furgit/format/pack/ingest"
)
// Result is one receive-pack execution result.
type Result struct {
UnpackError string
Commands []CommandResult
Ingest *ingest.Result
Planned []PlannedUpdate
Applied bool
}