mod_storage_none: Add a noop archive delete method

This commit is contained in:
Kim Alvefur 2017-04-04 18:46:51 +02:00
parent 46b3b5d02c
commit 15698fba15

View file

@ -33,4 +33,8 @@ function driver:find()
return function () end, 0;
end
function driver:delete()
return true;
end
module:provides("storage", driver);