mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-13 21:34:43 +01:00
20 lines
575 B
Python
20 lines
575 B
Python
import betterproto
|
|
from game_server.net.session import Session
|
|
from lib.proto import (
|
|
GetInviteActivityInviteeDataReq,
|
|
GetInviteActivityInviteeDataRsp,
|
|
InviteeActivity,
|
|
InviteeActivityType
|
|
)
|
|
|
|
async def handle(session: Session, msg: GetInviteActivityInviteeDataReq) -> betterproto.Message:
|
|
return GetInviteActivityInviteeDataRsp(
|
|
retcode=0,
|
|
invitee_activity_info_list=[
|
|
InviteeActivity(
|
|
schedule_id=2,
|
|
activity_type=InviteeActivityType.INVITEE_ACTIVITY_TYPE_GOBACK
|
|
)
|
|
]
|
|
)
|