9 lines
206 B
TypeScript
9 lines
206 B
TypeScript
import { API } from 'homebridge'
|
|
|
|
import { PLATFORM_NAME } from './settings'
|
|
import { domoticaPlatform } from './platform'
|
|
|
|
export = (api: API) => {
|
|
api.registerPlatform(PLATFORM_NAME, domoticaPlatform)
|
|
}
|