mcfly/demo/src/api/index.js
2026-06-20 09:29:52 +02:00

6 lines
167 B
JavaScript

export default async (fastify) => {
fastify.get('/', async function (request, reply) {
console.log({ request, reply })
return 'This is the API Index'
})
}