Make init return a promise to comply with Greenlock's expectations

This commit is contained in:
Sam Lord 2021-04-09 14:05:41 +01:00
parent d07dffd46e
commit d84ffdfcdf
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ module.exports.create = function(config) {
init: function(opts) {
//request = opts.request;
return null;
return Promise.resolve(null);
},
set: function(data) {