5bb26cc53a
Signed-off-by: mikesir87 <mikesir87@gmail.com> Imported from dockersamples/101-tutorial, removed other languages for now, and replaced PWD references with Docker Desktop.
7 lines
146 B
JavaScript
7 lines
146 B
JavaScript
const db = require('../persistence');
|
|
|
|
module.exports = async (req, res) => {
|
|
await db.removeItem(req.params.id);
|
|
res.sendStatus(200);
|
|
};
|