1load("@io_bazel_rules_go//go:def.bzl", "go_library") 2 3go_library( 4 name = "hack", 5 srcs = [ 6 "doc.go", 7 "hack.go", 8 ], 9 importpath = "edge-infra.dev/pkg/tools/hack", 10 visibility = ["//visibility:public"], 11 deps = [ 12 "//pkg/lib/build/bazel", 13 "@com_github_peterbourgon_ff_v3//:ff", 14 "@com_github_peterbourgon_ff_v3//ffcli", 15 ], 16)