UNPKG

homebridge-bondbridge

Version:

Catered shell script to integrate BondBridge units by Bond

23 lines (19 loc) 357 B
"use strict"; module.exports = { default: function ( api ) { api.registerPlatform( "BondBridge", BondBridge ); } } // Platform definition class BondBridge { constructor( log, config, api ) { this.log = log; this.api = api; this.config = config; this.log.debug("BondBridge this.config %s", this.config); } }