debian-mirror-gitlab/lib/gitlab/import_export/project/sample/tree_restorer.rb
2021-01-29 00:20:46 +05:30

20 lines
361 B
Ruby

# frozen_string_literal: true
module Gitlab
module ImportExport
module Project
module Sample
class TreeRestorer < Project::TreeRestorer
def relation_tree_restorer_class
RelationTreeRestorer
end
def relation_factory
RelationFactory
end
end
end
end
end
end