constructor()

in generators/guestbinary/index.js [10:23]


    constructor(args, opts) {
        super(args, opts);

        this.option('serviceName', { type: String, required: false });    
        this.option('guestBinarySourceFolder', { type: String, required: false });
        this.option('guestBinaryRelativePath', { type: String, required: false });
        this.option('guestBinaryParameters', { type: String, required: false });
        this.option('instanceCount', { type: Number, required: false }); 
        this.option('isAddNewService', { type: Boolean, required: true });
        this.isAddNewService = this.options.isAddNewService;

        this.generatorConfig = {};

    } // constructor()