@mangar2/mqttservice
Version:
communicates with a MQTT-Style HTTP broker
21 lines (18 loc) • 628 B
JavaScript
/**
* @license
* This software is licensed under the GNU LESSER GENERAL PUBLIC LICENSE Version 3. It is furnished
* "as is", without any support, and with no warranty, express or implied, as to its usefulness for
* any purpose.
*
* @author Volker Böhm
* @copyright Copyright (c) 2020 Volker Böhm
* @overview
* Library module to communicate with the mqtt broker. It includes
* Publish to send messsages to the broker and
* OnPublish to receive messages published by the broker
*/
module.exports = {
Publish: require('./publish.js'),
OnPublish: require('./onpublish.js')
}