homebridge-camera-ui
Version:
User Interface for RTSP capable cameras with HSV support.
15 lines (12 loc) • 298 B
JavaScript
/**
* v5
*
* @url https://github.com/SeydX/homebridge-camera-ui
* @author SeydX <seydx@outlook.de>
*
**/
'use-strict';
import { HomebridgeCameraUI } from './src/platform.js';
export default (api) => {
api.registerPlatform('homebridge-camera-ui', 'CameraUI', HomebridgeCameraUI, true);
};