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