格式化代码

This commit is contained in:
flswld
2023-05-22 00:39:02 +08:00
parent f851ad1692
commit 3100e8b147
115 changed files with 38550 additions and 38546 deletions

View File

@@ -5,44 +5,44 @@ package proto_security;
option go_package = "./;proto";
enum Platform {
Unkown = 0;
IOS = 1;
Android = 2;
PC = 3;
WEB = 4;
WAP = 5;
PS = 6;
Nintendo = 7;
CloudAndroid = 8;
CloudPC = 9;
CloudIOS = 10;
PS5 = 11;
Unkown = 0;
IOS = 1;
Android = 2;
PC = 3;
WEB = 4;
WAP = 5;
PS = 6;
Nintendo = 7;
CloudAndroid = 8;
CloudPC = 9;
CloudIOS = 10;
PS5 = 11;
}
message GameLoginNotifyRequest {
uint32 uid = 1;
uint32 account_type = 2;
string account = 3;
uint32 platform = 4;
string region = 5;
string biz_game = 6;
uint32 uid = 1;
uint32 account_type = 2;
string account = 3;
uint32 platform = 4;
string region = 5;
string biz_game = 6;
}
message GameLogoutNotifyRequest {
uint32 uid = 1;
uint32 account_type = 2;
string account = 3;
uint32 platform = 4;
string region = 5;
string biz_game = 6;
uint32 uid = 1;
uint32 account_type = 2;
string account = 3;
uint32 platform = 4;
string region = 5;
string biz_game = 6;
}
message GameHeartBeatInfo {
repeated uint32 uid = 1;
repeated uint32 uid = 1;
}
message GameHeartBeatNotifyRequest {
map<uint32, GameHeartBeatInfo> platform_uid_list = 1;
string region = 2;
string biz_game = 3;
map<uint32, GameHeartBeatInfo> platform_uid_list = 1;
string region = 2;
string biz_game = 3;
}