mirror of
https://github.com/cnodejs/nodeclub.git
synced 2025-12-08 19:55:55 +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()});
|
|
};
|