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

16 lines
248 B
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2015-11-26 14:37:03 +05:30
require 'backup/files'
module Backup
class Artifacts < Files
2018-11-08 19:23:39 +05:30
attr_reader :progress
def initialize(progress)
@progress = progress
2018-03-17 18:26:18 +05:30
super('artifacts', JobArtifactUploader.root)
2015-11-26 14:37:03 +05:30
end
end
end