mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-14 05:44:34 +01:00
8 lines
234 B
Python
8 lines
234 B
Python
|
|
import betterproto
|
|
from game_server.net.session import Session
|
|
from lib.proto import AddGoodfeelReq,AddGoodfeelRsp
|
|
|
|
async def handle(session: Session, msg: AddGoodfeelReq) -> betterproto.Message:
|
|
return AddGoodfeelRsp(retcode=0)
|