Files
KianaBH3/game_server/packet/handlers/GetWikiDataReq.py
2024-11-07 23:25:15 +08:00

11 lines
349 B
Python

import betterproto
from game_server.net.session import Session
from lib.proto import GetWikiDataReq, GetWikiDataRsp
async def handle(session: Session, msg: GetWikiDataReq) -> betterproto.Message:
return GetWikiDataRsp(
retcode=0,
has_take_activity_suit_reward_list=[132],
has_take_rating_reward_list=[1,2,3,4,5,6]
)