You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
That is used in test/test.go, you would import as:
import "go_prefix/lib"
But would have to have the following in test/BUILD file:
go_test(
name = "test",
...
deps = ["//lib:go_default_library"],
)
It would be cleaner if instead, you could set the name to "lib" in lib/BUILD and have the deps be "//lib" in test/BUILD while keeping the import in test/test.go the same.