load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "resource", srcs = ["ref.go"], importpath = "edge-infra.dev/pkg/lib/gcp/resource", visibility = ["//visibility:public"], ) go_test( name = "resource_test", srcs = ["ref_test.go"], embed = [":resource"], deps = ["@com_github_stretchr_testify//assert"], )