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

10 lines
305 B
Python

import betterproto
from game_server.net.session import Session
from lib.proto import GetWebActivityInfoReq,GetWebActivityInfoRsp
async def handle(session: Session, msg: GetWebActivityInfoReq) -> betterproto.Message:
return GetWebActivityInfoRsp(
retcode=0,
web_activity_list=[]
)