Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'internal/streamrpc/testdata/test.proto')
-rw-r--r--internal/streamrpc/testdata/test.proto16
1 files changed, 0 insertions, 16 deletions
diff --git a/internal/streamrpc/testdata/test.proto b/internal/streamrpc/testdata/test.proto
deleted file mode 100644
index 7614a07a9..000000000
--- a/internal/streamrpc/testdata/test.proto
+++ /dev/null
@@ -1,16 +0,0 @@
-syntax = "proto3";
-
-package test.streamrpc;
-
-option go_package = "gitlab.com/gitlab-org/gitaly/v14/internal/streamrpc/testdata";
-
-import "google/protobuf/empty.proto";
-
-service Test {
- rpc Stream(StreamRequest) returns (google.protobuf.Empty) {}
-}
-
-message StreamRequest {
- bool fail = 1;
- string string_field = 2;
-}