mirror of
https://github.com/strapi/strapi.git
synced 2025-07-15 04:53:17 +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;
|
||
|
};
|