7 lines
191 B
JavaScript
7 lines
191 B
JavaScript
"use strict";
|
|
const { ESPHomeRGBWWPlatform } = require("./platform");
|
|
|
|
module.exports = (api) => {
|
|
api.registerPlatform("homebridge-esphome-rgbww", "ESPHomeRGBWW", ESPHomeRGBWWPlatform);
|
|
};
|