mirror of
https://github.com/strapi/strapi.git
synced 2025-07-23 00:51:17 +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();
|
|
}
|
|
};
|
|
};
|