mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-03 16:04:30 +00:00
21 lines
362 B
Ruby
21 lines
362 B
Ruby
# 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
|