mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-17 07:14:35 +01:00
Initial commit
This commit is contained in:
11
game_server/packet/handlers/GetClientSettingReq.py
Normal file
11
game_server/packet/handlers/GetClientSettingReq.py
Normal file
@@ -0,0 +1,11 @@
|
||||
import betterproto
|
||||
from game_server.net.session import Session
|
||||
from lib.proto import GetClientSettingReq,GetClientSettingRsp
|
||||
|
||||
async def handle(session: Session, msg: GetClientSettingReq) -> betterproto.Message:
|
||||
return GetClientSettingRsp(
|
||||
retcode=0,
|
||||
client_setting_type=msg.client_setting_type,
|
||||
is_weekly_guide_switch_on=True,
|
||||
avatar_artifact_switch_list=[]
|
||||
)
|
||||
Reference in New Issue
Block a user