dosubot[bot] commented on issue #362:
URL:
https://github.com/apache/incubator-hugegraph-doc/issues/362#issuecomment-2151609826
<!-- Answer -->
To resolve the issue where the packages
`github.com/apache/hugegraph-client-go/hugegraph` and
`github.com/apache/hugegraph-client-go/hugegraph/model` do not exist in your Go
project, you should update your import paths to use the correct repository and
branch.
The correct import paths should be:
```go
import (
"hugegraph.apache.org/client-go/hugegraph"
"hugegraph.apache.org/client-go/hugegraph/model"
)
```
Make sure your `go.mod` file includes the correct module path:
```go
module your-module-name
go 1.16
require (
hugegraph.apache.org/client-go v0.0.0-xxxxxx // replace with the correct
version
)
```
Then, run `go mod tidy` to update your dependencies.
For more detailed information on how to use the HugeGraph-Client, you can
refer to the [HugeGraph-Client Quick Start
Guide](https://github.com/apache/incubator-hugegraph-toolchain/blob/master/hugegraph-client-go/README.md)
<sup>[[1]](https://github.com/apache/incubator-hugegraph-doc/blob/master/static/client-go/index.html)</sup><sup>[[2]](https://github.com/apache/incubator-hugegraph-doc/blob/master/content/en/docs/quickstart/hugegraph-client.md)</sup><sup>[[3]](https://github.com/apache/incubator-hugegraph-doc/blob/master/content/cn/docs/quickstart/hugegraph-client.md)</sup>.
<!-- Dosu Comment Footer -->
*To continue talking to [Dosu](https://dosu.dev), mention @dosu.*
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]