mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-26 00:19:24 +03:00
14 lines
249 B
Protocol Buffer
14 lines
249 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
// 4.7.0
|
|
message GetAuthkeyRsp {
|
|
int32 retcode = 1;
|
|
string auth_appid = 2;
|
|
string game_biz = 3;
|
|
uint32 sign_type = 4;
|
|
uint32 authkey_ver = 7;
|
|
string authkey = 13;
|
|
}
|