load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library") go_library( name = "eyede_lib", srcs = ["main.go"], importpath = "edge-infra.dev/hack/tools/eyede", visibility = ["//visibility:private"], deps = [ "//hack/tools/eyede/use-database", "//hack/tools/eyede/use-storage", "//hack/tools/eyede/utils", "//pkg/edge/api/utils", "//pkg/lib/cli/commands", "//pkg/lib/gcp/cloudsql", "@com_github_googlecloudplatform_cloudsql_proxy//proxy/dialers/postgres", "@com_github_peterbourgon_ff_v3//ffcli", ], ) go_binary( name = "eyede", embed = [":eyede_lib"], visibility = ["//visibility:public"], )