mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-14 05:44:34 +01:00
12 lines
400 B
Python
12 lines
400 B
Python
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=[]
|
|
)
|