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