1
This repository has been archived on 2025-03-15. You can view files and clone it, but cannot push or open issues or pull requests.

6 lines
204 B
TypeScript
Raw Normal View History

2025-03-15 20:40:21 +01:00
import { API } from "homebridge";
import { PLUGIN_NAME } from "./data/constants";
import Controller from "./controller";
export default (api: API) => api.registerPlatform(PLUGIN_NAME, Controller as any)