Initial commit

This commit is contained in:
Laramie Leavitt
2016-03-02 01:00:40 -08:00
commit 1f5135d9bd
7 changed files with 49 additions and 0 deletions

7
local/BUILD Normal file
View File

@ -0,0 +1,7 @@
load("@bazel_tools//tools/build_rules/go:def.bzl", "go_library")
go_library(
name ="local",
srcs = [ "local.go" ],
visibility = ["//visibility:public"],
)

5
local/local.go Normal file
View File

@ -0,0 +1,5 @@
package local
func World() string {
return "local.World!"
}