mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-13 21:34:43 +01:00
18 lines
464 B
Python
18 lines
464 B
Python
import betterproto
|
|
from game_server.net.session import Session
|
|
from lib.proto import (
|
|
ChapterBwWorldGetDataReq,
|
|
ChapterBwWorldGetDataRsp,
|
|
ChapterBwWorld,
|
|
ChapterBwWorldRune,
|
|
ChapterBwWorldTowerStage
|
|
)
|
|
|
|
async def handle(session: Session, msg: ChapterBwWorldGetDataReq) -> betterproto.Message:
|
|
return ChapterBwWorldGetDataRsp(
|
|
retcode=0,
|
|
chapter_bw_world=ChapterBwWorld(
|
|
chapter_id=msg.chapter_id
|
|
)
|
|
)
|