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

14 lines
221 B
Ruby

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