16 lines
299 B
Protocol Buffer
16 lines
299 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
import "ForceUpdateInfo.proto";
|
||
|
import "StopServerInfo.proto";
|
||
|
import "RegionInfo.proto";
|
||
|
|
||
|
message QueryCurrRegionHttpRsp {
|
||
|
oneof Detail {
|
||
|
ForceUpdateInfo forceUdpate = 3;
|
||
|
StopServerInfo stopServer = 4;
|
||
|
RegionInfo regionInfo = 5;
|
||
|
}
|
||
|
int32 retcode = 1;
|
||
|
string msg = 2;
|
||
|
}
|