autogenerated

This commit is contained in:
Mike Danese
2016-10-19 14:42:06 -07:00
parent 88c1ee28ed
commit 3b6a067afc
864 changed files with 40481 additions and 0 deletions

21
cmd/linkcheck/BUILD Normal file
View File

@@ -0,0 +1,21 @@
package(default_visibility = ["//visibility:public"])
licenses(["notice"])
load(
"@io_bazel_rules_go//go:def.bzl",
"go_binary",
"go_library",
"go_test",
"cgo_library",
)
go_binary(
name = "linkcheck",
srcs = ["links.go"],
tags = ["automanaged"],
deps = [
"//vendor:github.com/mvdan/xurls",
"//vendor:github.com/spf13/pflag",
],
)