mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-13 21:34:43 +01:00
11 lines
322 B
Python
11 lines
322 B
Python
import betterproto
|
|
from game_server.net.session import Session
|
|
from lib.proto import EnterWorldChatroomReq, EnterWorldChatroomRsp
|
|
|
|
async def handle(session: Session, msg: EnterWorldChatroomReq) -> betterproto.Message:
|
|
return EnterWorldChatroomRsp(
|
|
retcode=0,
|
|
chatroom_id=1,
|
|
player_num=69
|
|
)
|