summaryrefslogtreecommitdiff
path: root/plugins/grpc/parser/test_nested/test_import.proto
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/grpc/parser/test_nested/test_import.proto')
-rw-r--r--plugins/grpc/parser/test_nested/test_import.proto12
1 files changed, 12 insertions, 0 deletions
diff --git a/plugins/grpc/parser/test_nested/test_import.proto b/plugins/grpc/parser/test_nested/test_import.proto
new file mode 100644
index 00000000..a3a476ba
--- /dev/null
+++ b/plugins/grpc/parser/test_nested/test_import.proto
@@ -0,0 +1,12 @@
+syntax = "proto3";
+package app.namespace;
+
+import "message.proto";
+import "pong.proto";
+
+// Ping Service.
+service PingService {
+ // Ping Method.
+ rpc Ping (Message) returns (Message) {
+ }
+}