mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-13 11:35:28 +00:00
9 lines
150 B
JavaScript
9 lines
150 B
JavaScript
export function del(req, res) {
|
|
res.writeHead(200, {
|
|
'Content-Type': 'application/json'
|
|
});
|
|
|
|
res.end(JSON.stringify({
|
|
id: req.params.id
|
|
}));
|
|
} |