class Kongkit::Client

Public Class Methods

new(url = 'http://localhost:8001') click to toggle source
# File lib/kongkit/client.rb, line 25
def initialize(url = 'http://localhost:8001')
  @url = url

  self.class.base_uri(@url)
  self.class.headers('Accept' => 'application/json')
end