ref: 803089a76171db1dd5b891fb6dfa1b7e7f3d50d2
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
}