2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
require 'backup/files'
|
|
|
|
|
|
|
|
module Backup
|
|
|
|
class Registry < Files
|
2018-11-08 19:23:39 +05:30
|
|
|
attr_reader :progress
|
|
|
|
|
|
|
|
def initialize(progress)
|
|
|
|
@progress = progress
|
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
super('registry', Settings.registry.path)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|