summaryrefslogtreecommitdiff
path: root/plugins/grpc/parser/test.proto
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/grpc/parser/test.proto')
-rw-r--r--plugins/grpc/parser/test.proto20
1 files changed, 20 insertions, 0 deletions
diff --git a/plugins/grpc/parser/test.proto b/plugins/grpc/parser/test.proto
new file mode 100644
index 00000000..e2230954
--- /dev/null
+++ b/plugins/grpc/parser/test.proto
@@ -0,0 +1,20 @@
+syntax = "proto3";
+package app.namespace;
+
+// Ping Service.
+service PingService {
+ // Ping Method.
+ rpc Ping (Message) returns (Message) {
+ }
+}
+
+// Pong service.
+service PongService {
+ rpc Pong (stream Message) returns (stream Message) {
+ }
+}
+
+message Message {
+ string msg = 1;
+ int64 value = 2;
+} \ No newline at end of file