blob: 45b6f222ad34102ac3ff592093903efcf73a5ff8 (
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, tpe) if #path == 0 then return {} end end
function backend:set(mods) end
|