diff options
author | lonkaars <loek@pipeframe.xyz> | 2021-08-03 19:50:17 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2021-08-03 19:50:17 +0200 |
commit | 773c4ef10e3b2be7376271afe30633848fb0eb94 (patch) | |
tree | d2d2a02b5596f413ad3b2f21e1aa6e83c59e59b7 /index.ts | |
parent | 2876d7a9ec90cd75274b18f6383fa35bd075d6b2 (diff) |
python from stdin + plugin beginnings
Diffstat (limited to 'index.ts')
-rw-r--r-- | index.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/index.ts b/index.ts new file mode 100644 index 0000000..767376c --- /dev/null +++ b/index.ts @@ -0,0 +1,7 @@ +import { API } from 'homebridge'; + +import BekenBridge from './plugin'; + +export default function Plugin(api: API) { + api.registerPlatform('BekenBridge', BekenBridge); +} |