Bazel构建golang项目,怎么设置这一项?官方文档有这么一段:
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") # gazelle:prefix github.com/example/project gazelle(name = "gazelle")
上面说倒数prefix后面要用项目代替,我的项目在本地D:\workspace\www\go_work\src\golang_learning
,应该怎么设置?