Welcome to mirror list, hosted at ThFree Co, Russian Federation.

staging_event_fetcher.rb « cycle_analytics « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1454a1a33eb091765c292c30f9b2f052a68455e1 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module Gitlab
  module CycleAnalytics
    class StagingEventFetcher < BaseEventFetcher
      include ProductionHelper
      include BuildsEventHelper
    end
  end
end