mirror of
https://github.com/strapi/strapi.git
synced 2025-08-25 09:08:52 +00:00
16 lines
315 B
TypeScript
16 lines
315 B
TypeScript
![]() |
import { bootstrap } from './bootstrap';
|
||
|
import { register } from './register';
|
||
|
import services from './services';
|
||
|
import routes from './routes';
|
||
|
import controllers from './controllers';
|
||
|
import { config } from './config';
|
||
|
|
||
|
export default {
|
||
|
bootstrap,
|
||
|
config,
|
||
|
routes,
|
||
|
controllers,
|
||
|
register,
|
||
|
services,
|
||
|
};
|