summaryrefslogtreecommitdiff
path: root/tests/plugins/grpc/testdata/simple/simple.proto
diff options
context:
space:
mode:
Diffstat (limited to 'tests/plugins/grpc/testdata/simple/simple.proto')
-rw-r--r--tests/plugins/grpc/testdata/simple/simple.proto13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/plugins/grpc/testdata/simple/simple.proto b/tests/plugins/grpc/testdata/simple/simple.proto
new file mode 100644
index 00000000..aca3c1d9
--- /dev/null
+++ b/tests/plugins/grpc/testdata/simple/simple.proto
@@ -0,0 +1,13 @@
+syntax = "proto3";
+
+package testSimple;
+
+service SimpleService {
+ rpc SimpleMethod (SimpleMessage) returns (SimpleMessage) {
+ }
+}
+
+message SimpleMessage {
+ int32 id = 1;
+ string name = 2;
+} \ No newline at end of file