module Acme::Client::Resources::Challenges

Constants

CHALLENGE_TYPES

Public Class Methods

new(client, type:, **arguments) click to toggle source
# File lib/acme/client/resources/challenges.rb, line 14
def self.new(client, type:, **arguments)
  CHALLENGE_TYPES.fetch(type, Unsupported).new(client, **arguments)
end