summaryrefslogtreecommitdiff
path: root/lib/backup/registry.rb
blob: 9645a07dfb8db359718fb0c498f709dfdab28d6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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