load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "config", srcs = ["ConfigProvider.go"], importpath = "edge-infra.dev/pkg/edge/datasync/internal/config", visibility = ["//pkg/edge/datasync:__subpackages__"], deps = [ "//pkg/edge/datasync/kafkaclient", "@com_github_peterbourgon_ff_v3//:ff", ], ) go_test( name = "config_test", srcs = ["config_test.go"], data = glob(["testdata/**"]), deps = [ ":config", "//pkg/edge/datasync/internal/config/fake", "@com_github_stretchr_testify//assert", ], )