This commit is contained in:
Mike Conrad
2025-06-20 12:48:25 -04:00
3 changed files with 8 additions and 3 deletions

View File

@ -12,6 +12,6 @@ const UsersController = () => import('#controllers/users_controller')
router.get('users', [UsersController, 'index'])
router.get('/', async () => {
return {
hello: 'WORLD',
hello: 'world',
}
})