mirror of
https://github.com/strapi/strapi.git
synced 2025-07-19 23:16:47 +00:00

- Hooks registry - D&P CT migrations - i18N CT migrations - Umzug with js / sql migrations - Eslint updates
12 lines
205 B
JavaScript
12 lines
205 B
JavaScript
'use strict';
|
|
|
|
const bootstrap = require('./server/bootstrap');
|
|
const services = require('./server/services');
|
|
|
|
module.exports = (/* strapi, config */) => {
|
|
return {
|
|
bootstrap,
|
|
services,
|
|
};
|
|
};
|