aboutsummaryrefslogtreecommitdiff
path: root/receivepack/service/command_result.go
blob: 37549f08385b301ea65a9c8b8d3ea91724630649 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package service

import objectid "codeberg.org/lindenii/furgit/object/id"

// CommandResult is one per-command execution result.
type CommandResult struct {
	Name         string
	Error        string
	RefName      string
	OldID        *objectid.ObjectID
	NewID        *objectid.ObjectID
	ForcedUpdate bool
}