mirror of
https://github.com/strapi/strapi.git
synced 2025-07-15 04:53:17 +00:00
14 lines
260 B
JavaScript
14 lines
260 B
JavaScript
'use strict';
|
|
|
|
const bootstrap = require('./server/bootstrap');
|
|
const services = require('./server/services');
|
|
const config = require('./server/config');
|
|
|
|
module.exports = (/* strapi, config */) => {
|
|
return {
|
|
config,
|
|
bootstrap,
|
|
services,
|
|
};
|
|
};
|