init
This commit is contained in:
12
game_server/handlers/RelicRecommendCsReq.py
Normal file
12
game_server/handlers/RelicRecommendCsReq.py
Normal file
@@ -0,0 +1,12 @@
|
||||
import betterproto
|
||||
from game_server.net.session import PlayerSession
|
||||
from rail_proto.lib import (
|
||||
RelicRecommendCsReq,
|
||||
RelicRecommendScRsp
|
||||
)
|
||||
|
||||
async def handle(session: PlayerSession, msg: RelicRecommendCsReq) -> betterproto.Message:
|
||||
return RelicRecommendScRsp(
|
||||
retcode=0,
|
||||
avatar_id=msg.avatar_id
|
||||
)
|
||||
Reference in New Issue
Block a user