mirror of
https://github.com/lucaspalomodevelop/monitoring-server.git
synced 2026-03-12 22:57:21 +00:00
10 lines
125 B
JavaScript
10 lines
125 B
JavaScript
'use strict'
|
|
|
|
module.exports = function (opts) {
|
|
return function (req, res) {
|
|
res.json({
|
|
opts: opts
|
|
})
|
|
}
|
|
}
|