3 lines
64 B
JavaScript
3 lines
64 B
JavaScript
|
|
module.exports = function(req, res) {
|
||
|
|
res.end('HELLO WORLD');
|
||
|
|
}
|