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

module(..., package.seeall)

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