grpc 第三方依赖 就是grpc的 third_party 文件夹
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
271 B

syntax = "proto2";
package upb.test;
message TestMessage {
optional int32 i32 = 1 [default = 5];
repeated int32 r_i32 = 2;
optional string str = 3 [default = "abc"];
repeated string r_str = 4;
optional TestMessage msg = 5;
repeated TestMessage r_msg = 6;
}