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

Open
Ghost wants to merge 1 commits from (deleted):master into master
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) {