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

14 lines
221 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2015-11-18 10:39:26 +00:00
module Backup
class Lfs < Backup::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