subdirectory paths under vendor/ The intent is to make use of the golang 1.6 VENDOR extension to build. As seen, the bare example does not correctly build using bazel in this mode.
12 lines
140 B
Go
12 lines
140 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/laramiel/bazel-example-golang-bare/bare"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println("Hello", bare.World())
|
|
}
|