17 lines
259 B
Ruby
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
|