]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - apps/tidep0084.git/blobdiff - prebuilt/iot-gateway/node_modules/protocol-buffers-schema/test/fixtures/service.proto
Updated Sensor To Cloud design to have an easy to use setup GUI on the
[apps/tidep0084.git] / prebuilt / iot-gateway / node_modules / protocol-buffers-schema / test / fixtures / service.proto
diff --git a/prebuilt/iot-gateway/node_modules/protocol-buffers-schema/test/fixtures/service.proto b/prebuilt/iot-gateway/node_modules/protocol-buffers-schema/test/fixtures/service.proto
deleted file mode 100644 (file)
index 5788161..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-message HelloRequest {
-  optional string greeting = 1;
-}
-
-message HelloResponse {
-  required string reply = 1;
-}
-
-service HelloService {
-  rpc SayHello(HelloRequest) returns (HelloResponse) {
-    option (google.api.http) = {
-      get: "/v1/say-hello/echo/{greeting}"
-      additional_bindings {
-        post: "/v2/say-hello"
-        body: "greeting"
-      }
-      additional_bindings {
-        get: "/v2/say-hello"
-      }
-    };
-  }
-  rpc LotsOfReplies(HelloRequest) returns (stream HelloResponse);
-  rpc LotsOfGreetings(stream HelloRequest) returns (HelloResponse) {
-    option (google.api.http) = {
-      post: "/v1/lots-of-greetings"
-      body: "*"
-    };
-  }
-  rpc BidiHello(stream HelloRequest) returns (stream HelloResponse);
-}