func()

in httputil/httputil.go [164:166]


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