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