2
0
mirror of https://github.com/tenrok/axios.git synced 2026-05-15 11:59:42 +03:00
Files
2025-12-30 13:30:43 +02:00

14 lines
244 B
JavaScript

export default function (req, res) {
req.on('data', function (chunk) {
});
req.on('end', function () {
console.log('POST received');
res.writeHead(200, {
'Content-Type': 'application/json'
});
res.end();
});
};