update API socket

This commit is contained in:
2020-12-09 08:58:41 +07:00
parent c1ccf51f1e
commit bc8812ebed
9 changed files with 1040 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
'use strict';
module.exports = function (app) {
var Api = require('../controllers/ApiController');
app.route('/GetRTLog').post(Api.GetRTLog);
};