Files
seguidorDeLotes/nuxt4-app/server/api/auth/test.get.ts
josedario87 2f625b95d0
All checks were successful
build-and-deploy / build (push) Successful in 9s
build-and-deploy / deploy (push) Successful in 3s
Add test endpoint to verify auth subfolder works
2025-10-11 18:03:34 -06:00

8 lines
140 B
TypeScript

/**
* Test endpoint
* Ruta: /api/auth/test
*/
export default defineEventHandler(() => {
return { message: 'Auth subfolder works!' }
})