gitlab-org--gitlab-foss/lib/gitlab/import_export/project/sample/tree_restorer.rb

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