OSDN Git Service

Merge pull request #201 from Bytom/v0.1
[bytom/vapor.git] / vendor / github.com / hashicorp / go-plugin / test / grpc / test.proto
diff --git a/vendor/github.com/hashicorp/go-plugin/test/grpc/test.proto b/vendor/github.com/hashicorp/go-plugin/test/grpc/test.proto
deleted file mode 100644 (file)
index e8470a3..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-syntax = "proto3";
-package grpctest;
-
-message TestRequest {
-    int32 Input = 1;
-}
-
-message TestResponse {
-    int32 Output = 2;
-}
-
-message PrintKVRequest {
-    string Key = 1;
-    oneof Value {
-        string ValueString = 2;
-        int32 ValueInt = 3;
-    }
-}
-
-message PrintKVResponse {
-
-}
-
-message BidirectionalRequest {
-    uint32 id = 1;
-}
-
-message BidirectionalResponse {
-    uint32 id = 1;
-}
-
-service Test {
-    rpc Double(TestRequest) returns (TestResponse) {}
-    rpc PrintKV(PrintKVRequest) returns (PrintKVResponse) {}
-    rpc Bidirectional(BidirectionalRequest) returns (BidirectionalResponse) {}
-    rpc Stream(stream TestRequest) returns (stream TestResponse) {}
-}
-
-message PingRequest {
-}
-
-message PongResponse {
-    string msg = 1;
-}
-
-service PingPong {
-    rpc Ping(PingRequest) returns (PongResponse) {}
-}