2018-09-29 18:34:47 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-11-18 05:39:26 -05:00
|
|
|
require 'backup/files'
|
|
|
|
|
|
|
|
module Backup
|
|
|
|
class Lfs < Files
|
2018-05-24 10:58:25 -04:00
|
|
|
attr_reader :progress
|
|
|
|
|
|
|
|
def initialize(progress)
|
|
|
|
@progress = progress
|
|
|
|
|
2015-11-18 05:39:26 -05:00
|
|
|
super('lfs', Settings.lfs.storage_path)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|