mirror of
https://github.com/strapi/strapi.git
synced 2025-07-20 07:27:06 +00:00
12 lines
174 B
JavaScript
12 lines
174 B
JavaScript
![]() |
module.exports = strapi => {
|
||
|
return {
|
||
|
initialize: function(cb) {
|
||
|
strapi.app.use(async (ctx, next) => {
|
||
|
await next();
|
||
|
});
|
||
|
|
||
|
cb();
|
||
|
}
|
||
|
};
|
||
|
};
|