2018-09-29 18:34:47 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-11-18 05:39:26 -05:00
|
|
|
module Backup
|
2020-09-28 02:09:56 -04:00
|
|
|
class Lfs < Backup::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
|