10 lines
184 B
Protocol Buffer
10 lines
184 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
import "RegionSimpleInfo.proto";
|
||
|
|
||
|
message QueryRegionListHttpRsp {
|
||
|
int32 retcode = 1;
|
||
|
repeated RegionSimpleInfo regionList = 2;
|
||
|
string clientCustomConfig = 3;
|
||
|
}
|