blob: c5ff381284a8aa6eb5a811124ddebbd4940c063e (
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/packfile/ingest"
)
// Result is one receive-pack execution result.
type Result struct {
UnpackError string
Commands []CommandResult
Ingest *ingest.Result
Planned []PlannedUpdate
Applied bool
}
|