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

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

module Backup
  class Lfs < Files
    def initialize
      super('lfs', Settings.lfs.storage_path)
    end
  end
end