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 f94c56040c
commit fa0e2ec0b1

View file

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