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