mirror of
https://github.com/lucaspalomodevelop/monitoring-server.git
synced 2026-03-13 06:59:37 +00:00
8 lines
93 B
JavaScript
8 lines
93 B
JavaScript
'use strict'
|
|
|
|
module.exports = function (req, res) {
|
|
res.json({
|
|
hello: 'world!'
|
|
})
|
|
}
|