mirror of
https://github.com/samsonjs/rack-attack.git
synced 2026-03-25 09:25:49 +00:00
12 lines
190 B
Ruby
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
|