Add references to remote and bare repositories.

This commit is contained in:
Laramie Leavitt
2016-03-02 01:35:30 -08:00
parent e3ebf6d71e
commit 96b5352755
5 changed files with 68 additions and 4 deletions

10
bare.go Normal file
View File

@ -0,0 +1,10 @@
package main
import (
"fmt"
"github.com/laramiel/bazel-example-golang-bare/bare"
)
func main() {
fmt.Println("Hello", bare.World())
}