Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
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.
13 lines
239 B
13 lines
239 B
6 years ago
|
syntax = "proto2";
|
||
|
|
||
|
package upb.test;
|
||
|
|
||
|
message TestMessage {
|
||
|
optional int32 i32 = 1;
|
||
|
repeated int32 r_i32 = 2;
|
||
|
optional string str = 3;
|
||
|
repeated string r_str = 4;
|
||
|
optional TestMessage msg = 5;
|
||
|
repeated TestMessage r_msg = 6;
|
||
|
}
|