2016-03-11 17:30:12 +01:00

17 lines
182 B
JavaScript

'use strict';
module.exports = function () {
const hook = {
/**
* Initialize the hook
*/
initialize: function (cb) {
cb();
}
};
return hook;
};