2016-03-11 14:18:37 +01:00

25 lines
266 B
JavaScript

'use strict';
module.exports = function () {
const hook = {
/**
* Default options
*/
defaults: {
enabled: true
},
/**
* Initialize the hook
*/
initialize: function (cb) {
cb();
}
};
return hook;
};