load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "config", srcs = ["config_provider.go"], importpath = "edge-infra.dev/pkg/edge/datasync/shoot/config", visibility = ["//visibility:public"], deps = [ "//pkg/edge/datasync/kafkaclient", "@com_github_peterbourgon_ff_v3//:ff", ], ) go_test( name = "config_test", srcs = ["configProvider_test.go"], data = glob(["testdata/**"]), deps = [ ":config", "@com_github_stretchr_testify//require", ], )