func()

in httputil/httputil.go [169:171]


func (client *Client) Put(url string, headers map[string]string, payload []byte) (responseCode int, body []byte, err error) {
	return client.issueRequest(OperationPut, url, headers, bytes.NewBuffer(payload))
}