aboutsummaryrefslogtreecommitdiff
path: root/receivepack/service/result.go
blob: 7db7dcb152ecc3512ab73b834aae5bd1ff581f5a (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
}