shithub: furgit

ref: cf02f2958c191bea02126faf8daf72a7aae76bd9
dir: /receivepack/service/result.go/

View raw version
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
}