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

16 lines
237 B
Ruby

# frozen_string_literal: true
require 'backup/files'
module Backup
class Lfs < Files
attr_reader :progress
def initialize(progress)
@progress = progress
super('lfs', Settings.lfs.storage_path)
end
end
end