We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13b8247 commit 0a084a6Copy full SHA for 0a084a6
README.md
@@ -39,12 +39,12 @@ It's possible to use multiple versions of the client in a single project:
39
40
// main.go
41
import (
42
- elasticsearch7 "github.com/elastic/go-elasticsearch/v8"
43
- elasticsearch8 "github.com/elastic/go-elasticsearch/v9"
+ elasticsearch8 "github.com/elastic/go-elasticsearch/v8"
+ elasticsearch9 "github.com/elastic/go-elasticsearch/v9"
44
)
45
// ...
46
- es8, _ := elasticsearch7.NewDefaultClient()
47
- es9, _ := elasticsearch8.NewDefaultClient()
+ es8, _ := elasticsearch8.NewDefaultClient()
+ es9, _ := elasticsearch9.NewDefaultClient()
48
49
The `main` branch of the client is compatible with the current `master` branch of Elasticsearch.
50
0 commit comments