mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-14 13:54:43 +01:00
10 lines
274 B
Python
10 lines
274 B
Python
import betterproto
|
|
from game_server.net.session import Session
|
|
from lib.proto import (
|
|
RefreshAvatarSkillReq,
|
|
RefreshAvatarSkillRsp
|
|
)
|
|
|
|
async def handle(session: Session, msg: RefreshAvatarSkillReq) -> betterproto.Message:
|
|
return RefreshAvatarSkillRsp(retcode=0)
|