2022-12-17 20:51:22 +08:00
|
|
|
local M = {}
|
2022-12-17 16:07:27 +08:00
|
|
|
|
2023-01-05 16:24:50 +08:00
|
|
|
M.conf = {}
|
|
|
|
|
2022-12-17 23:33:21 +08:00
|
|
|
function M.setup(conf)
|
2023-01-05 16:24:50 +08:00
|
|
|
M.conf = conf or {}
|
|
|
|
if conf.base and not conf.base.lazy_load then
|
|
|
|
require("Trans.conf.loader").load_conf()
|
2022-12-20 12:05:36 +08:00
|
|
|
end
|
2023-01-05 21:15:01 +08:00
|
|
|
-- require("Trans.setup")
|
2022-12-17 23:33:21 +08:00
|
|
|
end
|
2022-12-17 20:51:22 +08:00
|
|
|
|
2022-12-17 16:07:27 +08:00
|
|
|
return M
|