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 }