debian-mirror-gitlab/lib/backup/lfs.rb

14 lines
206 B
Ruby
Raw Normal View History

2015-11-26 14:37:03 +05:30
require 'backup/files'
module Backup
class Lfs < Files
2018-11-08 19:23:39 +05:30
attr_reader :progress
def initialize(progress)
@progress = progress
2015-11-26 14:37:03 +05:30
super('lfs', Settings.lfs.storage_path)
end
end
end