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

7 lines
278 B
Python

import betterproto
from game_server.net.session import Session
from lib.proto import GetAssistantFrozenListReq, GetAssistantFrozenListRsp
async def handle(session: Session, msg: GetAssistantFrozenListReq) -> betterproto.Message:
return GetAssistantFrozenListRsp(retcode=0)