homebridge-netman
Version:
A Homebridge plugin to monitor devices connected to your network, track online/offline status, display Wi-Fi stats, and provide optional router controls.
9 lines (8 loc) • 414 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const platform_1 = require("./platform"); // Update import to the correct class name
const settings_1 = require("./settings");
// Default export of the platform
exports.default = (api) => {
api.registerPlatform(settings_1.PLUGIN_NAME, settings_1.PLATFORM_NAME, platform_1.BluetoothLEDPlatform); // Register NetworkMonitorPlatform
};