module Lotohelp::Config

Lotohelp configuration used to set global options.

@example Set the configuration options within a block.

Lotohelp.configure do |config|
  config.auth_token = "123123"
  config.auth_email = "example@gmail.com"
end

@example Set the configuration directly.

Lotohelp::Config.auth_token = "123123"

Attributes

auth_email[RW]

Defines auth email from user

@return [ String ]

auth_token[RW]

Defines auth token from user

@return [ String ]