Module: HuobiClient::Request

Included in:
Client
Defined in:
lib/huobi_client/request.rb

Instance Method Summary collapse

Instance Method Details

#get(path, options = {}) ⇒ Object



10
11
12
# File 'lib/huobi_client/request.rb', line 10

def get(path, options={})
  connect(:get, path, options)
end

#post(path, options = {}) ⇒ Object



14
15
16
17
# File 'lib/huobi_client/request.rb', line 14

def post(path, options={})
  # options.merge! created: created_at, access_key: @key
  connect(:post, path, options)
end