summaryrefslogtreecommitdiff
path: root/lib/gitlab/cycle_analytics/event_fetcher.rb
blob: 50e126cf00b02511ba4aaf8e0c070c7d40621f67 (plain)
1
2
3
4
5
6
7
8
9
module Gitlab
  module CycleAnalytics
    module EventFetcher
      def self.[](stage_name)
        CycleAnalytics.const_get("#{stage_name.to_s.camelize}EventFetcher")
      end
    end
  end
end