package main import ( "fmt" // HACK ALERT // The correct import is this: // "github.com/laramiel/bazel-example-golang-bare/bare" // But the bazel build rules for external golang packages like git_repository() are busted. // We hack around it by importing where those external dependencies end up: "github.com/laramiel/bazel-example-golang/external/ws_bare/bare" ) func main() { fmt.Println("Hello", bare.World()) }