mirror of
https://github.com/strapi/strapi.git
synced 2025-07-21 07:57:45 +00:00

- Hooks registry - D&P CT migrations - i18N CT migrations - Umzug with js / sql migrations - Eslint updates
16 lines
250 B
JavaScript
16 lines
250 B
JavaScript
'use strict';
|
|
|
|
module.exports = (/* strapi, config */) => {
|
|
return {
|
|
bootstrap() {},
|
|
destroy() {},
|
|
config: {},
|
|
routes: [],
|
|
controllers: {},
|
|
services() {},
|
|
policies: {},
|
|
middlewares: {},
|
|
contentTypes: {},
|
|
};
|
|
};
|