module Dhl

Constants

VERSION

Public Class Methods

client(options={}) click to toggle source
# File lib/dhl.rb, line 25
def self.client(options={})
  @client ||= Client.new(options)
end
config() click to toggle source
# File lib/dhl.rb, line 21
def self.config
  @config ||= Configuration.new
end
setup() { |config| ... } click to toggle source
# File lib/dhl.rb, line 17
def self.setup
  yield self.config
end