Skip to content

Instantly share code, notes, and snippets.

@tarusharora
Created February 16, 2019 14:42
Show Gist options
  • Save tarusharora/bfc63e8828dcdfbc8c7969fba7ee4699 to your computer and use it in GitHub Desktop.
Save tarusharora/bfc63e8828dcdfbc8c7969fba7ee4699 to your computer and use it in GitHub Desktop.
route file for user related routes
const { getUsersCtrl } = require('../controllers/userController')
module.exports = async function (fastify) {
fastify.get('/users', getUsersCtrl)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment