constructor()

in lib/cli.js [75:83]


  constructor(name, version, description) {
    this.name = name;
    this.version = version;
    this.description = description;
    this.commands = new Map();
    this.registerCommand(Help);
    this.registerCommand(Version);
    this.registerCommand(Completion);
  }