load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library") go_library( name = "hiss_lib", srcs = ["main.go"], importpath = "edge-infra.dev/hack/tools/hiss", visibility = ["//visibility:private"], deps = [ "//pkg/lib/build/bazel", "//pkg/lib/cli/commands", "@com_github_google_go_github_v47//github", "@com_github_peterbourgon_ff_v3//:ff", "@com_github_peterbourgon_ff_v3//ffcli", "@org_golang_x_oauth2//:oauth2", ], ) go_binary( name = "hiss", embed = [":hiss_lib"], visibility = ["//visibility:public"], )