mirror of
https://github.com/strapi/strapi.git
synced 2025-07-14 20:41:51 +00:00
17 lines
182 B
JavaScript
17 lines
182 B
JavaScript
'use strict';
|
|
|
|
module.exports = function () {
|
|
const hook = {
|
|
|
|
/**
|
|
* Initialize the hook
|
|
*/
|
|
|
|
initialize: function (cb) {
|
|
cb();
|
|
}
|
|
};
|
|
|
|
return hook;
|
|
};
|