2020-12-12 02:59:29 +00:00
|
|
|
import { API } from "homebridge";
|
2019-06-13 14:00:29 +00:00
|
|
|
|
2020-12-12 02:59:29 +00:00
|
|
|
import { PLATFORM_NAME } from "./settings";
|
|
|
|
import { Platform } from "./platform";
|
2019-06-17 01:12:57 +00:00
|
|
|
|
2019-06-17 19:59:15 +00:00
|
|
|
/**
|
2020-12-12 02:59:29 +00:00
|
|
|
* This method registers the platform with Homebridge
|
2019-06-17 19:59:15 +00:00
|
|
|
*/
|
2020-12-12 02:59:29 +00:00
|
|
|
export = (api: API) => {
|
|
|
|
api.registerPlatform(PLATFORM_NAME, Platform);
|
2019-06-13 14:00:29 +00:00
|
|
|
};
|