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

11 lines
279 B
Python

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