mirror of
https://github.com/cloudwu/skynet.git
synced 2026-07-22 02:53:09 +00:00
9 lines
202 B
Lua
9 lines
202 B
Lua
local skynet = require "skynet"
|
|
|
|
skynet.start(function()
|
|
skynet.dispatch("text", function(session, address, text)
|
|
print("[GLOBALLOG]", skynet.address(address),text)
|
|
end)
|
|
skynet.register "LOG"
|
|
end)
|