Skip to content

Instantly share code, notes, and snippets.

@wendelnascimento
Created May 11, 2020 20:19
Show Gist options
  • Save wendelnascimento/5b659cc8753abeddf7c357110934869c to your computer and use it in GitHub Desktop.
Save wendelnascimento/5b659cc8753abeddf7c357110934869c to your computer and use it in GitHub Desktop.
try {
const user = await UserService.userMethod(req.body.code);
res.status(200).json(loggedUser);
} catch (e) {
res.status(e.status || 400).json({
error: e.name,
message: e.message,
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment