mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-13 13:24:34 +01:00
11 lines
301 B
Python
11 lines
301 B
Python
import betterproto
|
|
from game_server.net.session import Session
|
|
from lib.proto import GetGodWarLobbyReq,GetGodWarLobbyRsp
|
|
|
|
async def handle(session: Session, msg: GetGodWarLobbyReq) -> betterproto.Message:
|
|
return GetGodWarLobbyRsp(
|
|
retcode=0,
|
|
god_war_id=1,
|
|
lobby_id=2
|
|
)
|