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