summaryrefslogtreecommitdiffstats
path: root/aconf/persistence/backends/null.lua
blob: 770e5e887978bd5007f89f639a885158936f2424 (plain)
1
2
3
4
5
6
7
8
9
10
--[[
Copyright (c) 2012-2014 Kaarle Ritvanen
See LICENSE file for license details
--]]

local backend = require('aconf.object').class()
function backend:get(path, top) if #path == 0 then return {} end end
function backend:set(mods) end

return backend