class TerraformLandscape::CLI

def define_commands

def define_commands
  command :print do |c|
    c.action do |_args, options|
      print(options.__hash__)
    end
    c.description = <<-TXT
etty-prints your Terraform plan output.
 an error occurs while parsing the Terraform output, print will automatically fall back on the original Terraform output. To view the stack trace instead, provide the global --trace option.
    TXT
  end
  global_option '--no-color', 'Do not output any color' do
    String.disable_colorization = true
    @output.color_enabled = false
  end
  default_command :print
end