buttonType.js 228 Bytes
const buttonType = require('../../json/button/buttonType.json')

class ButtonType {
  constructor(app) {
    app.post('/button/getButtonType', (req, res) => {
      res.send(buttonType)
    })
  }
}

module.exports = ButtonType