put请求
(api string)
| 605 | |
| 606 | //put请求 |
| 607 | func (this *ElasticSearchClient) put(api string) (req *httplib.BeegoHTTPRequest) { |
| 608 | return httplib.Put(api).Header("Content-Type", "application/json").SetTimeout(this.Timeout, this.Timeout) |
| 609 | } |
| 610 | |
| 611 | //post请求 |
| 612 | func (this *ElasticSearchClient) post(api string) (req *httplib.BeegoHTTPRequest) { |
no outgoing calls
no test coverage detected