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

14 lines
374 B
Python

import betterproto
from game_server.net.session import Session
from lib.proto import (
GetMasterPupilApplyReq,
GetMasterPupilApplyRsp,
MasterPupilType
)
async def handle(session: Session, msg: GetMasterPupilApplyReq) -> betterproto.Message:
return GetMasterPupilApplyRsp(
retcode=0,
type=MasterPupilType.MASTER_PUPIL_MASTER_TYPE.value
)