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

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

return backend