@petro-kushchak/homebridge-homepod-radio
Version:
Homebridge accessory for streaming radio to Homepod Mini and Apple TV
9 lines • 326 B
JavaScript
import { HomepodRadioPlatform } from './platform.js';
import { PLATFORM_NAME, PLUGIN_NAME } from './platformConstants.js';
/*
* Initializer function called when the plugin is loaded.
*/
export default (api) => {
api.registerPlatform(PLUGIN_NAME, PLATFORM_NAME, HomepodRadioPlatform);
};
//# sourceMappingURL=index.js.map