16 lines
315 B
TypeScript
Raw Normal View History

2024-03-15 20:24:37 +01:00
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,
};