blob: 7a0b1f33511ea31462118d8a0b8ea127aca73521 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package service
import "io"
// Request is one protocol-independent receive-pack execution request.
type Request struct {
Commands []Command
PushOptions []string
Atomic bool
DeleteOnly bool
PackExpected bool
Pack io.Reader
}
|