monkeyDluffy6017 commented on code in PR #9902:
URL: https://github.com/apache/apisix/pull/9902#discussion_r1274333691


##########
docs/en/latest/deployment-modes.md:
##########
@@ -434,3 +434,23 @@ upstreams:
     id: 1
 #END
 ```
+
+### How to configure protos
+
+```yaml
+protos:
+  - id: helloworld
+    desc: hello world
+    content: >
+      syntax = "proto3";
+      package helloworld;
+      service Greeter {
+      rpc SayHello (HelloRequest) returns (HelloReply) {}
+      }
+      message HelloRequest {
+      string name = 1;
+      }
+      message HelloReply {
+      string message = 1;

Review Comment:
   Do we need indent and blank here?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to