systemInfo.js 215 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 11 const systemInfo = require('../json/systemInfo.json'); class SystemInfo { constructor(app) { app.post('/getSystemInfo', (req, res) => { res.send(systemInfo); }); } } module.exports = SystemInfo;