summaryrefslogtreecommitdiff
path: root/lib/banzai/pipeline.rb
blob: e8a81bebaa9f49f78b820063d2dd6448031d3553 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module Banzai
  module Pipeline
    def self.[](name)
      name ||= :full
      const_get("#{name.to_s.camelize}Pipeline")
    end
  end
end