Files
cartodb/services/importer/spec/doubles/csv_normalizer.rb
2020-06-15 10:58:47 +08:00

15 lines
197 B
Ruby

module CartoDB
module Importer2
module Doubles
class CsvNormalizer
def run
Object.new
end
def force_normalize
end
end
end
end
end