8 lines
143 B
Go
8 lines
143 B
Go
package esclient
|
|
|
|
type Client interface {
|
|
// Perform Search API
|
|
Search(body []byte) ([]byte, error)
|
|
GetTotalHitCount(v interface{}) int64
|
|
}
|