UNPKG

homebridge-epex

Version:

Monitor EPEX energy prices using the ENTSO-E transparency platform API.

10 lines 284 B
'use strict'; import { EPEXMonitor } from './platform.js'; import { PLATFORM_NAME } from './settings.js'; /** * This method registers the platform with Homebridge */ export default (api) => { api.registerPlatform(PLATFORM_NAME, EPEXMonitor); }; //# sourceMappingURL=index.js.map