mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-03-24 16:43:15 +01:00
[BREAKING CHANGE] proto auto compiled by gradle (#226)
* [BREAK] proto auto compiled by gradle * [BREAK] move proto to submodule * update gitmodules * [BREAK] move proto to submodule * move proto to submodule * fix merge conflict * fix github action after merging * fix merge conflicts and del submodule * upload the proto
This commit is contained in:
20
proto/QueryCurrRegionHttpRsp.proto
Executable file
20
proto/QueryCurrRegionHttpRsp.proto
Executable file
@@ -0,0 +1,20 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
import "ForceUpdateInfo.proto";
|
||||
import "StopServerInfo.proto";
|
||||
import "RegionInfo.proto";
|
||||
|
||||
message QueryCurrRegionHttpRsp {
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user