ref: dd027e1e5379019bfeffc48ff1274b5e05581ff3
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
}