2018-09-29 18:34:47 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-05-16 18:17:57 -04:00
|
|
|
require 'backup/files'
|
|
|
|
|
|
|
|
module Backup
|
|
|
|
class Registry < 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
|