cartodb-4.42/lib/carto/metrics/usage_metrics_interface.rb
2024-04-06 05:25:13 +00:00

12 lines
318 B
Ruby

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