aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/util/echo.proto
diff options
context:
space:
mode:
authorGravatar Nicolas Noble <nnoble@google.com>2014-11-26 16:33:03 -0800
committerGravatar Nicolas Noble <nnoble@google.com>2014-11-26 16:33:03 -0800
commitb7ebd3b8c6fe39f99c40b10c1b563e4adb607b6c (patch)
treec1decf819492d455ec81cd471942c5516138f825 /test/cpp/util/echo.proto
parent0e905e63db21bcdd85d3d1af051fcdc5bb5caa38 (diff)
Initial import.
Diffstat (limited to 'test/cpp/util/echo.proto')
-rw-r--r--test/cpp/util/echo.proto15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/cpp/util/echo.proto b/test/cpp/util/echo.proto
new file mode 100644
index 0000000000..37ae6b9a39
--- /dev/null
+++ b/test/cpp/util/echo.proto
@@ -0,0 +1,15 @@
+syntax = "proto2";
+
+package grpc.cpp.test.util;
+
+message EchoRequest {
+ optional string message = 1;
+}
+
+message EchoResponse {
+ optional string message = 1;
+}
+
+service TestService {
+ rpc Echo(EchoRequest) returns (EchoResponse) {}
+}