Protocol Buffers - Google's data interchange format (grpc依赖) https://developers.google.com/protocol-buffers/

13 lines
159 B

syntax = "proto3";
package stress_test_protos;
message TestMessage {
optional int32 a = 1;
repeated M b = 2;
}
message M {
optional string foo = 1;
}