plugins/mod_storage_none.lua
changeset 6283 7cf6d3a2c855
parent 5425 b00812c6daf8
child 8061 1b35a562528d
--- a/plugins/mod_storage_none.lua	Fri Jun 20 16:16:33 2014 +0200
+++ b/plugins/mod_storage_none.lua	Fri Jun 20 16:22:23 2014 +0200
@@ -1,8 +1,11 @@
 local driver = {};
 local driver_mt = { __index = driver };
 
-function driver:open(store)
-	return setmetatable({ store = store }, driver_mt);
+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 {};