aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/coro/csi/test.proto
diff options
context:
space:
mode:
Diffstat (limited to 'vespalib/src/tests/coro/csi/test.proto')
-rw-r--r--vespalib/src/tests/coro/csi/test.proto15
1 files changed, 15 insertions, 0 deletions
diff --git a/vespalib/src/tests/coro/csi/test.proto b/vespalib/src/tests/coro/csi/test.proto
new file mode 100644
index 00000000000..3e53ade7cfb
--- /dev/null
+++ b/vespalib/src/tests/coro/csi/test.proto
@@ -0,0 +1,15 @@
+// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+
+syntax = "proto3";
+
+message TestRequest {
+ string name = 1;
+}
+
+message TestReply {
+ string name = 1;
+}
+
+service TestService {
+ rpc my_test (TestRequest) returns (TestReply) {}
+}