buttonType.js 228 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 11 const buttonType = require('../../json/button/buttonType.json') class ButtonType { constructor(app) { app.post('/button/getButtonType', (req, res) => { res.send(buttonType) }) } } module.exports = ButtonType