File

plugins/mod_storage_none.lua @ 6645:4f934cf03bc9

net.dns: Make sure argument to math.randomseed does not overflow a 32 bit *signed* int (blame Lua). Closes #439
author Kim Alvefur <zash@zash.se>
date Sun, 26 Apr 2015 19:50:24 +0200
parent 5425:b00812c6daf8
child 6283:7cf6d3a2c855
line wrap: on
line source

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

function driver:open(store)
	return setmetatable({ store = store }, 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);