gitlab-org--gitlab-foss/lib/backup/lfs.rb

16 lines
237 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2015-11-18 10:39:26 +00:00
require 'backup/files'
module Backup
class Lfs < Files
attr_reader :progress
def initialize(progress)
@progress = progress
2015-11-18 10:39:26 +00:00
super('lfs', Settings.lfs.storage_path)
end
end
end