module Doshii::Client::Location

Constants

API_URL

Public Instance Methods

create_location(query = {}, &block) click to toggle source
# File lib/doshii/client/location.rb, line 10
def create_location(query = {}, &block)
  process_response(request :post, API_URL, query, &block)
end
list_locations() click to toggle source
# File lib/doshii/client/location.rb, line 6
def list_locations
  process_response(request :get, API_URL)
end