shithub: furgit

ref: f40daef1deefda4b76957f5d5728c4175c27be51
dir: /network/receivepack/service/result.go/

View raw version
package service

import (
	"codeberg.org/lindenii/furgit/format/packfile/ingest"
)

// Result is one receive-pack execution result.
type Result struct {
	UnpackError string
	Commands    []CommandResult
	Ingest      *ingest.Result
	Planned     []PlannedUpdate
	Applied     bool
}