gitlab-org--gitlab-foss/lib/backup/registry.rb

14 lines
228 B
Ruby

# frozen_string_literal: true
module Backup
class Registry < Backup::Files
attr_reader :progress
def initialize(progress)
@progress = progress
super('registry', Settings.registry.path)
end
end
end