load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "config", srcs = [ "channel.go", "config.go", ], importpath = "edge-infra.dev/pkg/edge/lighthouse/config", visibility = ["//visibility:public"], deps = [ "//pkg/lib/gcp/cloudsql", "@com_github_peterbourgon_ff_v3//:ff", "@io_k8s_client_go//rest", "@io_k8s_client_go//tools/clientcmd", "@io_k8s_client_go//util/homedir", "@io_k8s_sigs_controller_runtime//pkg/client", ], ) go_test( name = "config_test", srcs = [ "channel_test.go", "config_test.go", ], embed = [":config"], deps = ["@com_github_stretchr_testify//assert"], )