aboutsummaryrefslogtreecommitdiff
path: root/network/receivepack/service/request.go
diff options
context:
space:
mode:
Diffstat (limited to 'network/receivepack/service/request.go')
-rw-r--r--network/receivepack/service/request.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/network/receivepack/service/request.go b/network/receivepack/service/request.go
deleted file mode 100644
index 33e3796f..00000000
--- a/network/receivepack/service/request.go
+++ /dev/null
@@ -1,15 +0,0 @@
-package service
-
-import "io"
-
-// Request is one protocol-independent receive-pack execution request.
-//
-// If PackExpected is true, Pack must be non-nil and remain valid until
-// Execute finishes consuming it.
-type Request struct {
- Commands []Command
- PushOptions []string
- Atomic bool
- PackExpected bool
- Pack io.Reader
-}