class Lutaml::Cli::TreeViewFormatter

def initialize(options = {})

def initialize(options = {})
  @max_depth = options[:max_depth]
  @show_attributes = options.fetch(:show_attributes, true)
  @show_operations = options.fetch(:show_operations, true)
  @show_associations = options.fetch(:show_associations, false)
  @no_color = options.fetch(:no_color, false)
  @current_depth = 0
end