Skip to content

Instantly share code, notes, and snippets.

@deepal
Created March 3, 2019 19:07
Show Gist options
  • Select an option

  • Save deepal/21f0fb1640243fc116ebfc331e2c1993 to your computer and use it in GitHub Desktop.

Select an option

Save deepal/21f0fb1640243fc116ebfc331e2c1993 to your computer and use it in GitHub Desktop.
router.get('/users', async (req, res) => {
try {
res.status(200).send(await getUsers());
} catch (err) {
res.status(500).send({error: err.message});
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment