mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-23 14:47:44 +00:00
15 lines
327 B
Protocol Buffer
15 lines
327 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "RegionInfo.proto";
|
|
|
|
message QueryCurrRegionHttpRsp {
|
|
int32 retcode = 1;
|
|
string message = 2;
|
|
RegionInfo regionInfo = 3;
|
|
bytes clientSecretKey = 11;
|
|
bytes regionCustomConfigEncrypted = 12;
|
|
bytes clientRegionCustomConfigEncrypted = 13;
|
|
}
|