dosubot[bot] commented on issue #362:
URL: 
https://github.com/apache/incubator-hugegraph-doc/issues/362#issuecomment-2151741339

   <!-- Answer -->
   To resolve the issue of importing the HugeGraph client packages in your Go 
project, you should use the correct import path as specified in the 
documentation. The import path should be:
   
   ```go
   import (
       "hugegraph.apache.org/client-go/hugegraph"
       "hugegraph.apache.org/client-go/hugegraph/model"
   )
   ```
   
   Ensure your `go.mod` file includes the correct module path and version:
   
   ```go
   module your-module-name
   
   go 1.16
   
   require (
       hugegraph.apache.org/client-go v1.2.0
   )
   ```
   
   Then, run `go mod tidy` to update your dependencies.
   
   For more detailed information, you can refer to the [HugeGraph Go Client 
README](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]

Reply via email to