async function getCurrentSetup(req, res) {
    logger.debug('Getting current setup');
    const configuration = await zigbee2mqttManager.getSetup();
    res.json(configuration);
  }