mirror of
https://github.com/cloudwu/skynet.git
synced 2026-07-22 11:03:12 +00:00
9 lines
148 B
Lua
9 lines
148 B
Lua
local function config(path , pre)
|
|
assert(path)
|
|
local env = pre or {}
|
|
local f = assert(loadfile(path,"t",env))
|
|
f()
|
|
return env
|
|
end
|
|
|
|
return config |