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

base.rb « summary « cycle_analytics « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5605d48c543999f42d70e5bfd62c7992e0a791ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

module Gitlab
  module CycleAnalytics
    module Summary
      class Base
        include Gitlab::CycleAnalytics::Summary::Defaults

        def initialize(project:, options:)
          @project = project
          @options = options
        end

        private

        attr_reader :project, :options
      end
    end
  end
end