module Kakine::Exporter

Public Class Methods

get(type) click to toggle source
# File lib/kakine/exporter.rb, line 3
def self.get(type)
  case type.to_sym
  when :terraform
    Kakine::Exporter::Terraform
  else
    fail "Unknown exporter: #{type}"
  end
end