local
submodule
vendor
github.com
laramiel
bazel-example-golang-bare
bazel-example-golang-remote
BUILD
with_vendor
.gitignore
.gitmodules
BUILD
README.md
WORKSPACE
bare.go
hello.go
remote.go
8 lines
179 B
Python
8 lines
179 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "bare",
|
|
srcs = ["bazel-example-golang-bare/bare.go"],
|
|
visibility = ["//visibility:public"],
|
|
)
|