9. DELETE endpoints
DELETE /api/snippets/:id
DELETE /api/snippets/:id// ...
// DELETE /api/snippets/:id
router.delete("/:id", async (request, response) => {
// TODO
});
// ...DELETE /api/snippets/1Exercise: Implement the DELETE endpoint
DELETE /api/snippets/1Last updated