Initial commit
This commit is contained in:
7
local/BUILD
Normal file
7
local/BUILD
Normal 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
5
local/local.go
Normal file
@ -0,0 +1,5 @@
|
||||
package local
|
||||
|
||||
func World() string {
|
||||
return "local.World!"
|
||||
}
|
Reference in New Issue
Block a user