Skip to content

Instantly share code, notes, and snippets.

@tarusharora
Last active December 29, 2018 10:57
Show Gist options
  • Save tarusharora/5bdbd73b87de25a1d117c9cd284d5efa to your computer and use it in GitHub Desktop.
Save tarusharora/5bdbd73b87de25a1d117c9cd284d5efa to your computer and use it in GitHub Desktop.
api/routes/root.js
// api/routes/root.js
module.exports = async function (fastify, opts) {
fastify.get('/', async function (request, reply) {
return { hello: "World" }
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment