Files
lotr/submodule/remote.go
Laramie Leavitt 53207a1865 Hack around broken bazel go build rules.
Fix comment in submodule/remote.go
2016-03-03 18:14:20 -08:00

18 lines
442 B
Go

package main
import (
"fmt"
// HACK ALERT
// The correct import is this:
// "github.com/laramiel/bazel-example-golang-remote/remote"
// But the bazel build rules for subversion packages don't support alternate
// go_prefix() commands.
// We hack around it by importing where those dependencies end up:
"github.com/laramiel/bazel-example-golang/submodule/src/remote/remote"
)
func main() {
fmt.Println("Hello", remote.World())
}