ref: 1a8842b33d6d83d1754267e087fd7b4f73ca9e91
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
}