cartodb-4.42/lib/cartodb/stats/editor_apis.rb

17 lines
257 B
Ruby
Raw Normal View History

2024-04-06 13:25:13 +08:00
require_relative 'aggregator'
module CartoDB
module Stats
class EditorAPIs < Aggregator
PREFIX = 'editor'
def self.instance(config={}, host_info=Socket.gethostname)
super(PREFIX, config, host_info)
end
end
end
end