mirror of
https://github.com/cloudwu/skynet.git
synced 2026-07-22 02:53:09 +00:00
12 lines
214 B
Lua
12 lines
214 B
Lua
local skynet = require "skynet"
|
|
|
|
print("Log server start")
|
|
|
|
local log = skynet.launch("snlua","globallog.lua")
|
|
print("log",log)
|
|
|
|
local db = skynet.launch("snlua","simpledb.lua")
|
|
print("simpledb",db)
|
|
|
|
skynet.exit()
|