mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-14 13:54:43 +01:00
7 lines
314 B
Python
7 lines
314 B
Python
import betterproto
|
|
from game_server.net.session import Session
|
|
from lib.proto import ChapterKnightRichManGetDataReq, ChapterKnightRichManGetDataRsp
|
|
|
|
async def handle(session: Session, msg: ChapterKnightRichManGetDataReq) -> betterproto.Message:
|
|
return ChapterKnightRichManGetDataRsp(retcode=0,rich_man_id=101)
|