mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-14 05:44:34 +01:00
14 lines
367 B
Python
14 lines
367 B
Python
import betterproto
|
|
from game_server.net.session import Session
|
|
from lib.proto import FinishGuideReportReq,FinishGuideReportRsp
|
|
|
|
async def handle(session: Session, msg: FinishGuideReportReq) -> betterproto.Message:
|
|
print(msg.guide_id_list)
|
|
return FinishGuideReportRsp(
|
|
retcode=0,
|
|
guide_id_list=msg.guide_id_list,
|
|
is_finish=True
|
|
)
|
|
|
|
|