Welcome to mirror list, hosted at ThFree Co, Russian Federation.

reference_extraction_pipeline.rb « pipeline « banzai « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eaddccd30a5e53517f96b798bd193738a990b92a (plain)
1
2
3
4
5
6
7
8
9
10
11
module Banzai
  module Pipeline
    class ReferenceExtractionPipeline < BasePipeline
      def self.filters
        [
          Filter::ReferenceGathererFilter
        ]
      end
    end
  end
end