2022-11-10 13:00:45 +01:00
|
|
|
import type { API } from 'homebridge'
|
2022-11-06 13:04:30 +01:00
|
|
|
|
2022-11-06 13:50:39 +01:00
|
|
|
import { PLATFORM_NAME } from './settings'
|
|
|
|
import { PrometheusExporterPlatform } from './platform'
|
2022-11-06 13:04:30 +01:00
|
|
|
|
2022-11-06 13:50:39 +01:00
|
|
|
export = (api: API): void => {
|
|
|
|
api.registerPlatform(PLATFORM_NAME, PrometheusExporterPlatform)
|
|
|
|
}
|