Files
kubesphere/pkg/simple/client/elasticsearch/interface.go
2019-09-17 16:00:54 +08:00

8 lines
143 B
Go

package esclient
type Client interface {
// Perform Search API
Search(body []byte) ([]byte, error)
GetTotalHitCount(v interface{}) int64
}