Welcome to mirror list, hosted at ThFree Co, Russian Federation.

registry.rb « backup « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 916986694027b9874d660a7b3fad22b4a3d289ac (plain)
1
2
3
4
5
6
7
8
9
require 'backup/files'

module Backup
  class Registry < Files
    def initialize
      super('registry', Settings.registry.path)
    end
  end
end