Skip to content

Instantly share code, notes, and snippets.

@kauemurakami
Created June 1, 2020 18:11
Show Gist options
  • Save kauemurakami/f4e4418f5268b76e1a2399943e4202f9 to your computer and use it in GitHub Desktop.
Save kauemurakami/f4e4418f5268b76e1a2399943e4202f9 to your computer and use it in GitHub Desktop.
deletando registro
export const deleteUser = async (req: Request, res: Response) => {
await Client.deleteById(req.params.id)
res.status(200).send({ clients: Client.all() })
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment