mcfly/demo/src/api/index.js

5 lines
131 B
JavaScript

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