UNPKG
@hoobs/wink
Version:
latest (2.1.8)
2.1.8
2.1.7
2.1.6
2.1.4
2.1.3
2.1.2
2.1.1
2.1.0
Wink integration for HOOBS
github.com/hoobs-org/homebridge-wink
hoobs-org/homebridge-wink
@hoobs/wink
/
src
/
index.js
7 lines
(5 loc)
•
223 B
JavaScript
View Raw
1
2
3
4
5
6
7
const
{ pluginName, platformName } =
require
(
"./constants"
);
const
WinkPlatform
=
require
(
"./WinkPlatform"
);
module
.
exports
=
homebridge
=>
{ homebridge.
registerPlatform
(pluginName, platformName,
WinkPlatform
,
true
); };