2016-03-16 14:41:15 +01:00

27 lines
265 B
JavaScript

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