mirror of
https://github.com/cloudwu/skynet.git
synced 2026-07-22 19:13:07 +00:00
13 lines
241 B
Lua
13 lines
241 B
Lua
local skynet = require "skynet"
|
|
local group = require "mcgroup"
|
|
local id, g = ...
|
|
|
|
skynet.start(function()
|
|
skynet.dispatch("text",function(session,address,text)
|
|
print("===>",id, text)
|
|
end)
|
|
if g then
|
|
group.enter(tonumber(g))
|
|
end
|
|
end)
|