17 lines
257 B
Ruby
17 lines
257 B
Ruby
require_relative 'aggregator'
|
|
|
|
module CartoDB
|
|
module Stats
|
|
|
|
class Importer < Aggregator
|
|
|
|
PREFIX = 'importer'
|
|
|
|
def self.instance(config={}, host_info=Socket.gethostname)
|
|
super(PREFIX, config, host_info)
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end |