2018-09-29 18:34:47 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-05-16 18:17:57 -04:00
|
|
|
module Backup
|
2020-09-28 02:09:56 -04:00
|
|
|
class Registry < Backup::Files
|
2018-05-24 10:58:25 -04:00
|
|
|
attr_reader :progress
|
|
|
|
|
|
|
|
def initialize(progress)
|
|
|
|
@progress = progress
|
|
|
|
|
2016-05-16 18:17:57 -04:00
|
|
|
super('registry', Settings.registry.path)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|