class Dag::Client

Constants

VERSION

Attributes

api[R]

Public Class Methods

new(apikey, secret, options = {}) click to toggle source
# File lib/dag/client.rb, line 13
def initialize(apikey, secret, options = {})
  @api = API.new(apikey, secret, options)
end

Public Instance Methods

analysis_api() click to toggle source
# File lib/dag/client.rb, line 23
def analysis_api
  @api.analysis_api
end
apikey() click to toggle source
# File lib/dag/client.rb, line 19
def apikey
  @api.apikey
end
storage_api() click to toggle source
# File lib/dag/client.rb, line 27
def storage_api
  @api.storage_api
end