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