mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-13 21:34:43 +01:00
9 lines
315 B
Python
9 lines
315 B
Python
import betterproto
|
|
from game_server.net.session import Session
|
|
from lib.proto import (RefreshGodWarTicketReq,RefreshGodWarTicketRsp)
|
|
|
|
async def handle(session: Session, msg: RefreshGodWarTicketReq) -> betterproto.Message:
|
|
return RefreshGodWarTicketRsp(
|
|
retcode=0,
|
|
god_war_id=msg.god_war_id
|
|
) |