mirror of
https://github.com/strapi/strapi.git
synced 2025-07-23 00:51:17 +00:00
14 lines
251 B
JavaScript
14 lines
251 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
const register = require('./register');
|
||
|
const bootstrap = require('./bootstrap');
|
||
|
const services = require('./services');
|
||
|
const config = require('./config');
|
||
|
|
||
|
module.exports = () => ({
|
||
|
register,
|
||
|
bootstrap,
|
||
|
config,
|
||
|
services,
|
||
|
});
|