rack-attack/lib/rack/attack/blocklist.rb
2019-03-01 22:22:11 -03:00

12 lines
196 B
Ruby

# frozen_string_literal: true
module Rack
class Attack
class Blocklist < Check
def initialize(name = nil, &block)
super
@type = :blocklist
end
end
end
end