Created
September 17, 2018 10:29
-
-
Save Unitech/9b0852578ce90e3641bef19adcfbfc0f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Envision = require('./src/Envision') | |
const pmx = require('pmx') | |
pmx.init({ | |
isModule: true | |
}) | |
if (require.main === module) { | |
const envision = new Envision({ | |
wizard_mode: false, | |
predefined_zone : { | |
name : 'toto', | |
password: 'asffa' | |
} | |
}) | |
envision.start() | |
} | |
module.exports = Envision |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment