...
1load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
2
3go_library(
4 name = "cluster",
5 srcs = ["providers.go"],
6 importpath = "edge-infra.dev/pkg/f8n/warehouse/cluster",
7 visibility = ["//visibility:public"],
8 deps = [
9 "//pkg/f8n/warehouse",
10 "//pkg/f8n/warehouse/oci",
11 ],
12)
13
14go_test(
15 name = "cluster_test",
16 srcs = ["providers_test.go"],
17 embed = [":cluster"],
18 deps = [
19 "//pkg/f8n/warehouse",
20 "@com_github_stretchr_testify//assert",
21 ],
22)
View as plain text