1
0
mirror of https://github.com/kepler155c/opus synced 2024-10-01 00:10:41 +00:00
opus/sys/apis/config.lua
kepler155c@gmail.com a625b52bad lint
2017-10-08 17:45:01 -04:00

26 lines
484 B
Lua

local Util = require('util')
local fs = _G.fs
local Config = { }
Config.load = function(fname, data)
local filename = 'usr/config/' .. fname
if not fs.exists('usr/config') then
fs.makeDir('usr/config')
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)
local filename = 'usr/config/' .. fname
Util.writeTable(filename, data)
end
return Config