plugins/mod_storage_none.lua
author daurnimator <quae@daurnimator.com>
Wed, 22 Oct 2014 15:59:51 -0400
changeset 6487 913585bca01f
parent 6283 7cf6d3a2c855
child 8061 1b35a562528d
permissions -rw-r--r--
net/server: Remove print

local driver = {};
local driver_mt = { __index = driver };

function driver:open(store, typ)
	if typ and typ ~= "keyval" then
		return nil, "unsupported-store";
	end
	return setmetatable({ store = store, type = typ }, driver_mt);
end
function driver:get(user)
	return {};
end

function driver:set(user, data)
	return nil, "Storage disabled";
end

function driver:stores(username)
	return { "roster" };
end

function driver:purge(user)
	return true;
end

module:provides("storage", driver);