homebridge-august
Version:
The August plugin allows you to access your August & Yale device(s) from HomeKit.
11 lines • 419 B
JavaScript
/* Copyright(C) 2017-2024, donavanbecker (https://github.com/donavanbecker). All rights reserved.
*
* index.ts: homebridge-august.
*/
import { AugustPlatform } from './platform.js';
import { PLATFORM_NAME, PLUGIN_NAME } from './settings.js';
// Register our platform with homebridge.
export default (api) => {
api.registerPlatform(PLUGIN_NAME, PLATFORM_NAME, AugustPlatform);
};
//# sourceMappingURL=index.js.map