Fix devcontainer setup

This commit is contained in:
Mike Conrad
2025-06-20 10:47:20 -04:00
parent 761ea8fef8
commit 1696808c00
10 changed files with 31 additions and 53 deletions

View File

@ -8,10 +8,10 @@
*/
import router from '@adonisjs/core/services/router'
import UsersController from '#controllers/users_controller'
const UsersController = () => import('#controllers/users_controller')
router.get('users', [UsersController, 'index'])
router.get('/', async () => {
return {
hello: 'world',
hello: 'WORLD',
}
})