27 lines
265 B
JavaScript
Raw Normal View History

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