mirror of
https://github.com/mainflux/mainflux.git
synced 2025-05-06 19:29:15 +08:00
13 lines
230 B
JavaScript
13 lines
230 B
JavaScript
![]() |
/**
|
||
|
* STATUS
|
||
|
*/
|
||
|
exports.getStatus = function(req, res, next) {
|
||
|
|
||
|
console.log("req.headers['x-auth-token'] = ", req.headers['x-auth-token']);
|
||
|
|
||
|
var stat = {"status":"running"};
|
||
|
res.send(stat);
|
||
|
|
||
|
return next();
|
||
|
}
|