...
1load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
2
3go_library(
4 name = "clients",
5 srcs = [
6 "artifact_registry_client.go",
7 "bigquery_client.go",
8 "foreman_secret_client.go",
9 ],
10 importpath = "edge-infra.dev/pkg/edge/api/clients",
11 visibility = ["//visibility:public"],
12 deps = [
13 "//pkg/edge/api/apierror/gcp",
14 "//pkg/edge/api/graph/model",
15 "//pkg/edge/bsl",
16 "//pkg/f8n/warehouse/oci",
17 "//pkg/f8n/warehouse/oci/remote",
18 "//pkg/lib/gcp/secretmanager",
19 "@com_github_doug_martin_goqu_v9//:goqu",
20 "@com_github_google_go_containerregistry//pkg/name",
21 "@com_google_cloud_go_bigquery//:bigquery",
22 "@org_golang_google_api//iterator",
23 ],
24)
25
26go_test(
27 name = "clients_test",
28 srcs = ["foreman_secret_client_test.go"],
29 embed = [":clients"],
30 deps = ["@com_github_stretchr_testify//assert"],
31)
View as plain text