constructor()

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


  constructor(args, opts) {
    super(args, opts);
    
    this.desc('Generate Reliable actor 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;
  
  }