watsonb8 5cec734a09 Successful stream stress test
Need to add stream watchdog timer and accessory timeout timer
2020-12-11 00:02:10 -05:00

12 lines
294 B
TypeScript

import { API } from "homebridge";
import { PLATFORM_NAME } from "./settings";
import { HomeLocationPlatform } from "./homeLocationPlatform";
/**
* This method registers the platform with Homebridge
*/
export = (api: API) => {
api.registerPlatform(PLATFORM_NAME, HomeLocationPlatform);
};