Fix typo UpdateInfo
This commit is contained in:
parent
1dba984775
commit
512db7975d
|
@ -1,10 +1,6 @@
|
|||
syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
|
||||
|
||||
|
||||
message ForceUdpate {
|
||||
string dpinghecdgc = 1;
|
||||
message ForceUpdateInfo {
|
||||
string force_update_url = 1;
|
||||
}
|
|
@ -1,20 +1,16 @@
|
|||
syntax = "proto3";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
|
||||
|
||||
import "RegionInfo.proto";
|
||||
import "ForceUdpate.proto";
|
||||
import "ForceUpdateInfo.proto";
|
||||
import "StopServer.proto";
|
||||
import "bytes.proto";
|
||||
|
||||
message QueryCurrRegionHttpRsp {
|
||||
int32 retcode = 1;
|
||||
string msg = 2;
|
||||
RegionInfo regionInfo = 3;
|
||||
oneof detail {
|
||||
ForceUdpate force_udpate = 4;
|
||||
ForceUpdateInfo force_update = 4;
|
||||
StopServer stop_server = 5;
|
||||
}
|
||||
bytes client_secret_key = 11;
|
||||
|
|
Loading…
Reference in New Issue