ref: 1556cfb51d980ae8c5bf664ad69f3abd46f02386
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
}