mirror of
https://github.com/strapi/strapi.git
synced 2025-08-24 16:49:28 +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,
|
|
};
|