load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "cluster", srcs = ["providers.go"], importpath = "edge-infra.dev/pkg/f8n/warehouse/cluster", visibility = ["//visibility:public"], deps = [ "//pkg/f8n/warehouse", "//pkg/f8n/warehouse/oci", ], ) go_test( name = "cluster_test", srcs = ["providers_test.go"], embed = [":cluster"], deps = [ "//pkg/f8n/warehouse", "@com_github_stretchr_testify//assert", ], )