blob: 5e6b7806d45d3a35d8bec6594bbc22df5f1c5c7f [file] [log] [blame]
# See README.md for instructions on how to use these rules.
package(default_visibility = ["//visibility:public"])
load("tools/build_rules/go_rules", "go_library", "go_binary")
go_binary(
name = "fib",
srcs = glob(
["*.go"],
exclude = ["*_test.go"],
),
deps = ["//examples/go/lib1"],
)