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