8 lines
235 B
TypeScript
8 lines
235 B
TypeScript
import { API } from 'homebridge'
|
|
|
|
import { PLATFORM_NAME } from './settings'
|
|
import { PrometheusExporterPlatform } from './platform'
|
|
|
|
export = (api: API): void => {
|
|
api.registerPlatform(PLATFORM_NAME, PrometheusExporterPlatform)
|
|
}
|