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