WeChatMsg/app/util/protocbuf/extrabuf.proto
2024-01-05 20:06:23 +08:00

11 lines
195 B
Protocol Buffer

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