6 lines
154 B
JavaScript
6 lines
154 B
JavaScript
exports.GetRTLog = function (req, res) {
|
|
var io = req.app.get('socketio');
|
|
io.emit('realtime', req.body);
|
|
res.send({ status: "success" });
|
|
};
|