Files
Node.js-14-Cookbook/Chapter11/fastify-microservice/routes/example/index.js
T
2020-11-15 01:13:01 +00:00

8 lines
156 B
JavaScript

'use strict'
module.exports = async function (fastify, opts) {
fastify.get('/', async function (request, reply) {
return 'this is an example'
})
}