gitlab-org--gitlab-foss/lib/gitlab/cycle_analytics/summary/base.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
362 B
Ruby
Raw Normal View History

# 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