cartodb-4.42/lib/carto/metrics/usage_metrics_interface.rb

12 lines
318 B
Ruby
Raw Normal View History

2024-04-06 13:25:13 +08:00
module Carto::Metrics
class UsageMetricsInterface
def initialize(_username, _orgname)
raise NotImplementedError
end
def get_date_range(_service, _metric, _date_from, _date_to)
raise NotImplementedError, 'Implement a method that returns a hash of { Date => Numeric } pairs'
end
end
end