From 256f19558f8ed5747c15c85f7e401835787504eb Mon Sep 17 00:00:00 2001 From: Zhineng Li Date: Sun, 29 Mar 2026 06:53:53 +0800 Subject: first commit --- src/index.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/index.ts (limited to 'src/index.ts') diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 0000000..a18f86f --- /dev/null +++ b/src/index.ts @@ -0,0 +1,8 @@ +import type { API } from 'homebridge'; + +import { PLATFORM_NAME } from './settings.js'; +import { Platform } from './platform.js'; + +export default (api: API) => { + api.registerPlatform(PLATFORM_NAME, Platform); +}; -- cgit v1.2.3