Make init return a promise to comply with Greenlock's expectations #1
|
@ -29,7 +29,7 @@ module.exports.create = function(config) {
|
||||||
|
|
||||||
init: function(opts) {
|
init: function(opts) {
|
||||||
//request = opts.request;
|
//request = opts.request;
|
||||||
return null;
|
return Promise.resolve(null);
|
||||||
},
|
},
|
||||||
|
|
||||||
set: function(data) {
|
set: function(data) {
|
||||||
|
|
Loading…
Reference in New Issue