2024-03-21 18:20:12 +01:00

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,
};