Right now we have a combination of implicit and explicit route definition and its not the best. we need to rework this. app.ts should have something like: ``` import index from './src/api'; const { router } = createApp() router.mount('/api', index) ```