cartodb-4.42/lib/cartodb/stats/geocoding.rb
2024-04-06 05:25:13 +00:00

17 lines
259 B
Ruby

require_relative 'aggregator'
module CartoDB
module Stats
class Geocoding < Aggregator
PREFIX = 'geocoding'
def self.instance(config={}, host_info=Socket.gethostname)
super(PREFIX, config, host_info)
end
end
end
end