class GdsApi::ContentStore

def content_item(base_path)

def content_item(base_path)
  get_json(content_item_url(base_path))
end

def content_item!(base_path)

def content_item!(base_path)
  get_json!(content_item_url(base_path))
end

def content_item_url(base_path)

def content_item_url(base_path)
  "#{endpoint}/content#{base_path}"
end