rack-attack/lib/rack/attack/blocklist.rb
2019-03-01 21:51:15 -03:00

12 lines
190 B
Ruby

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