load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "artifactregistry", srcs = ["artifactregistry.go"], importpath = "edge-infra.dev/pkg/f8n/devinfra/gcp/artifactregistry", visibility = ["//visibility:public"], deps = [ "@com_google_cloud_go_artifactregistry//apiv1", "@com_google_cloud_go_artifactregistry//apiv1/artifactregistrypb", ], ) go_test( name = "artifactregistry_test", srcs = ["artifactregistry_test.go"], embed = [":artifactregistry"], tags = ["requires-network"], deps = ["@org_golang_google_api//iterator"], )