post请求
(api string)
| 610 | |
| 611 | //post请求 |
| 612 | func (this *ElasticSearchClient) post(api string) (req *httplib.BeegoHTTPRequest) { |
| 613 | return httplib.Post(api).Header("Content-Type", "application/json").SetTimeout(this.Timeout, this.Timeout) |
| 614 | } |
| 615 | |
| 616 | //delete请求 |
| 617 | func (this *ElasticSearchClient) delete(api string) (req *httplib.BeegoHTTPRequest) { |
no test coverage detected