1234567891011121314151617181920212223 |
- --[[
- Descripttion:
- version:
- Author: Neo,Huang
- Date: 2022-07-04 11:24:54
- LastEditors: Neo,Huang
- LastEditTime: 2022-07-04 17:42:52
- --]]
- require "skynet.manager"
- local skynet = require "skynet"
- local param = table.pack(...)
- skynet.start(
- function()
- local steward = skynet.localname(".steward")
- if steward then
- skynet.send(steward, "lua", table.unpack(param))
- skynet.exit()
- end
- end
- )
|