Files
lotr/bare.go
2016-03-03 18:12:32 -08:00

17 lines
428 B
Go

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())
}