123456789101112131415161718192021222324252627 |
- --[[
- Descripttion:接口 - 玩家
- version:
- Author: Neo,Huang
- Date: 2022-07-05 17:32:01
- LastEditors: Neo,Huang
- LastEditTime: 2022-07-05 20:29:29
- --]]
- local code = require "code"
- local root = {}
- -- 请求个人信息
- function root:self_info(uid, msg)
- return code.OK
- end
- -- 触发请求个人信息
- function root:after_self_info(uid)
- end
- function root:keep_alive(uid)
- return code.OK
- end
- return root
|