Bazel builds the golang project, how to set this item? The official document has the following paragraph:
https://github.com/bazelbuild.
Add the code below to the BUILD or BUILD.bazel file in the root
directory of your repository. Replace the string after prefix with the
prefix you chose for your project earlier.load("@bazel_gazelle//:def.bzl", "gazelle") -sharp gazelle:prefix github.com/example/project gazelle(name = "gazelle")
it is said above that the reciprocal prefix should be replaced by a project. My project is local D:\ workspace\ www\ go_work\ src\ golang_learning
. How should I set it?