16 lines
237 B
Protocol Buffer
16 lines
237 B
Protocol Buffer
package mt;
|
|
|
|
option go_package = ".;mt";
|
|
|
|
message ServerInfo
|
|
{
|
|
optional int32 instance_id = 1;
|
|
optional string listen_ip = 2;
|
|
optional int32 listen_port = 3;
|
|
}
|
|
|
|
message ServerInfoMetas
|
|
{
|
|
repeated ServerInfo values = 1;
|
|
}
|