homebridge-tessie
Version:
Connect Homebridge to your Tessie account.
9 lines • 316 B
JavaScript
import { TeslaFleetApiPlatform } from "./platform.js";
import { PLATFORM_NAME, PLUGIN_NAME } from "./settings.js";
/**
* This method registers the platform with Homebridge
*/
export default (api) => {
api.registerPlatform(PLUGIN_NAME, PLATFORM_NAME, TeslaFleetApiPlatform);
};
//# sourceMappingURL=index.js.map