move proto to submodule

This commit is contained in:
wetabq
2022-04-25 16:17:42 +08:00
parent 7f5e053290
commit 1bdec08806
439 changed files with 5371 additions and 2625 deletions

18
proto/QueryCurrRegionHttpRsp.proto Normal file → Executable file
View File

@@ -2,13 +2,19 @@ syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "ForceUpdateInfo.proto";
import "StopServerInfo.proto";
import "RegionInfo.proto";
message QueryCurrRegionHttpRsp {
int32 retcode = 1;
string message = 2;
RegionInfo regionInfo = 3;
bytes clientSecretKey = 11;
bytes regionCustomConfigEncrypted = 12;
bytes clientRegionCustomConfigEncrypted = 13;
oneof Detail {
ForceUpdateInfo force_udpate = 4;
StopServerInfo stop_server = 5;
}
int32 retcode = 1;
string msg = 2;
RegionInfo region_info = 3;
bytes client_secret_key = 11;
bytes region_custom_config_encrypted = 12;
bytes client_region_custom_config_encrypted = 13;
}