constructor()

in generators/ReliableStatefulService/index.js [7:22]


  constructor(args, opts) {
    super(args, opts);
    
    this.desc('Generate Reliable Stateful Service application template');
    this.option('libPath', {
      type: String
      , required: true
    });
    this.option('isAddNewService', {
      type: Boolean
      , required: true
    });
    this.libPath = this.options.libPath;
    this.isAddNewService = this.options.isAddNewService;
  
  }