summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/reports/security/evidence.rb
blob: a19f52f7195201c90a977fa10f466d75e2294d3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

module Gitlab
  module Ci
    module Reports
      module Security
        class Evidence
          attr_reader :data

          def initialize(data:)
            @data = data
          end
        end
      end
    end
  end
end