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

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

module ContainerRegistry
  class Referrer
    attr_reader :artifact_type, :digest, :tag

    def initialize(artifact_type, digest, tag)
      @artifact_type = artifact_type
      @digest = digest
      @tag = tag
    end
  end
end