Class: PassiveCIRCL::Clients::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/passive_circl/clients/base.rb

Direct Known Subclasses

DNS, SSL

Constant Summary collapse

HOST =
"www.circl.lu"
BASE_URL =
"https://#{HOST}"

Instance Method Summary collapse

Constructor Details

#initialize(username:, password:) ⇒ Base

Returns a new instance of Base.



13
14
15
16
# File 'lib/passive_circl/clients/base.rb', line 13

def initialize(username:, password:)
  @username = username
  @password = password
end