mirror of
https://github.com/cloudwu/skynet.git
synced 2026-07-22 02:53:09 +00:00
10 lines
181 B
Lua
10 lines
181 B
Lua
local skynet = require "skynet"
|
|
|
|
skynet.start(function()
|
|
print("Log server start")
|
|
skynet.monitor "simplemonitor"
|
|
local log = skynet.newservice("globallog")
|
|
skynet.exit()
|
|
end)
|
|
|