WeChatMsg/app/util/protocbuf/extrabuf.proto

11 lines
195 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
package app.protobuf;
option go_package=".;proto";
message ExtraBuf {
message Struct {
string field1 = 1;
string field2 = 2;
}
repeated Struct content = 1;
}