13 lines
221 B
Ruby
13 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
|