mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-15 14:24:34 +01:00
Initial commit
This commit is contained in:
13
game_server/packet/handlers/FinishGuideReportReq.py
Normal file
13
game_server/packet/handlers/FinishGuideReportReq.py
Normal file
@@ -0,0 +1,13 @@
|
||||
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
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user