load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "clients", srcs = [ "artifact_registry_client.go", "bigquery_client.go", "foreman_secret_client.go", ], importpath = "edge-infra.dev/pkg/edge/api/clients", visibility = ["//visibility:public"], deps = [ "//pkg/edge/api/apierror/gcp", "//pkg/edge/api/graph/model", "//pkg/edge/bsl", "//pkg/f8n/warehouse/oci", "//pkg/f8n/warehouse/oci/remote", "//pkg/lib/gcp/secretmanager", "@com_github_doug_martin_goqu_v9//:goqu", "@com_github_google_go_containerregistry//pkg/name", "@com_google_cloud_go_bigquery//:bigquery", "@org_golang_google_api//iterator", ], ) go_test( name = "clients_test", srcs = ["foreman_secret_client_test.go"], embed = [":clients"], deps = ["@com_github_stretchr_testify//assert"], )