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 'proto/streamrpc.proto')
-rw-r--r--proto/streamrpc.proto12
1 files changed, 12 insertions, 0 deletions
diff --git a/proto/streamrpc.proto b/proto/streamrpc.proto
new file mode 100644
index 000000000..26eae00ae
--- /dev/null
+++ b/proto/streamrpc.proto
@@ -0,0 +1,12 @@
+syntax = "proto3";
+
+package gitaly;
+
+option go_package = "gitlab.com/gitlab-org/gitaly/v14/proto/go/gitalypb";
+
+import "lint.proto";
+
+message StreamToken {
+ string cookie = 1;
+ string token = 2;
+}