homebridge-hilo
Version:
Plugin Homebridge (non officiel) pour la passerelle et les appareils Hilo de Hydro-Québec | Unofficial Homebridge plugin for Hydro-Québec Hilo bridge and devices
14 lines • 398 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getConfig = exports.setConfig = void 0;
const defaultConfig = {
refreshToken: "",
};
let _config;
const setConfig = (config) => {
_config = { ...defaultConfig, ...config };
};
exports.setConfig = setConfig;
const getConfig = () => _config;
exports.getConfig = getConfig;
//# sourceMappingURL=config.js.map