13 lines
228 B
Ruby
13 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
|