Skip to content

Commit e5638ec

Browse files
committed
Updated Readme
1 parent b6b4964 commit e5638ec

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,33 +8,33 @@
88

99
```shell
1010

11-
go get github.com/manticoresoftware/manticoresearch-go@v6.0.0
11+
go get github.com/manticoresoftware/manticoresearch-go@v1.6.0
1212

1313
```
1414

1515
## Getting Started
1616

1717
go mod init main
18-
go get github.com/manticoresoftware/manticoresearch-go@v6.0.0
18+
go get github.com/manticoresoftware/manticoresearch-go@v1.6.0
1919

2020
```go
2121

2222
package main
2323

2424
import (
2525
"context"
26-
"fmt:
26+
"fmt"
2727
Manticoresearch "github.com/manticoresoftware/manticoresearch-go"
2828
)
2929

3030
func main() {
3131

32-
# Create an instance of API client
32+
// Create an instance of API client
3333
configuration := Manticoresearch.NewConfiguration()
3434
configuration.Servers[0].URL = "http://localhost:9308"
3535
apiClient := Manticoresearch.NewAPIClient(configuration)
3636

37-
# Perform insert and search operations
37+
// Perform insert and search operations
3838
tableName := "products"
3939
indexDoc := map[string]interface{} {"title": "Crossbody Bag with Tassel"}
4040
indexReq := Manticoresearch.NewInsertDocumentRequest(tableName, indexDoc)

0 commit comments

Comments
 (0)