debian-mirror-gitlab/lib/backup/lfs.rb
2021-01-03 14:25:43 +05:30

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