class Passfort::Client

Public Class Methods

new(api_key:, excon_opts: {}) click to toggle source
# File lib/passfort/client.rb, line 7
def initialize(api_key:, excon_opts: {})
  @http = Passfort::Http.new(api_key, excon_opts)
end

Public Instance Methods

checks() click to toggle source
# File lib/passfort/client.rb, line 15
def checks
  Endpoint::Checks.new(@http)
end
profiles() click to toggle source
# File lib/passfort/client.rb, line 11
def profiles
  Endpoint::Profiles.new(@http)
end
tasks() click to toggle source
# File lib/passfort/client.rb, line 19
def tasks
  Endpoint::Tasks.new(@http)
end