mirror of
https://github.com/cnodejs/nodeclub.git
synced 2026-01-25 15:23:45 +00:00
5 lines
120 B
JavaScript
5 lines
120 B
JavaScript
// 用于网络监控
|
|
exports.status = function (req, res, next) {
|
|
res.json({status: 'success', now: new Date()});
|
|
};
|