UNPKG

@homebridge-plugins/homebridge-noip

Version:

The No-IP plugin allows you to update your No-IP hostname(s) for your homebridge instance.

10 lines 464 B
import { NoIPMatterPlatform } from './NoIPMatterPlatform.js'; import { NoIPPlatform } from './platform.js'; import { PLATFORM_NAME, PLUGIN_NAME } from './settings.js'; import { createPlatformProxy } from './utils.js'; // Register our platform with homebridge. export default (api) => { const ProxyCtor = createPlatformProxy(NoIPPlatform, NoIPMatterPlatform); api.registerPlatform(PLUGIN_NAME, PLATFORM_NAME, ProxyCtor); }; //# sourceMappingURL=index.js.map