1
0
mirror of https://github.com/kepler155c/opus synced 2025-02-10 05:50:01 +00:00
opus/sys/apis/config.lua

26 lines
484 B
Lua
Raw Normal View History

2016-12-11 14:24:52 -05:00
local Util = require('util')
2017-10-08 17:45:01 -04:00
local fs = _G.fs
2016-12-11 14:24:52 -05:00
local Config = { }
Config.load = function(fname, data)
2017-05-20 18:27:26 -04:00
local filename = 'usr/config/' .. fname
2016-12-11 14:24:52 -05:00
2017-05-20 18:27:26 -04:00
if not fs.exists('usr/config') then
fs.makeDir('usr/config')
2016-12-11 14:24:52 -05:00
end
if not fs.exists(filename) then
Util.writeTable(filename, data)
else
Util.merge(data, Util.readTable(filename) or { })
end
end
Config.update = function(fname, data)
2017-05-20 18:27:26 -04:00
local filename = 'usr/config/' .. fname
2016-12-11 14:24:52 -05:00
Util.writeTable(filename, data)
end
return Config