8 lines
93 B
JavaScript

'use strict'
module.exports = function (req, res) {
res.json({
hello: 'world!'
})
}