mirror of
https://github.com/LC044/WeChatMsg
synced 2025-05-23 00:28:05 +08:00
11 lines
195 B
Protocol Buffer
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;
|
||
|
}
|