BlueprintCommand constructor

BlueprintCommand()

Creates the blueprint command group.

Implementation

BlueprintCommand() {
  addSubcommand(BlueprintSaveCommand());
  addSubcommand(BlueprintListCommand());
  addSubcommand(BlueprintShowCommand());
  addSubcommand(BlueprintResolvedCommand());
  addSubcommand(BlueprintDeleteCommand());
  addSubcommand(BlueprintAssignCommand());
  addSubcommand(BlueprintUnassignCommand());
  addSubcommand(BlueprintPlanCommand());
  addSubcommand(BlueprintApplyCommand());
}