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

14 lines
228 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-05-16 22:17:57 +00:00
module Backup
class Registry < Backup::Files
attr_reader :progress
def initialize(progress)
@progress = progress
2016-05-16 22:17:57 +00:00
super('registry', Settings.registry.path)
end
end
end