28 lines
407 B
Protocol Buffer
28 lines
407 B
Protocol Buffer
package mt;
|
|
|
|
option go_package = ".;mt";
|
|
|
|
message WheelServerCluster
|
|
{
|
|
optional int32 instance_id = 1;
|
|
optional int32 http_listen_port = 3;
|
|
}
|
|
|
|
message WheelDb
|
|
{
|
|
optional string host = 1;
|
|
optional int32 port = 2;
|
|
optional string user = 3;
|
|
optional string passwd = 4;
|
|
optional string database = 5;
|
|
}
|
|
|
|
message Web3ServiceCluster
|
|
{
|
|
optional string url = 1;
|
|
}
|
|
|
|
message Config
|
|
{
|
|
}
|