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

module Banzai
  module Filter
    def self.[](name)
      const_get("#{name.to_s.camelize}Filter")
    end
  end
end