...

Text file src/edge-infra.dev/pkg/lib/gcp/resource/BUILD.bazel

Documentation: edge-infra.dev/pkg/lib/gcp/resource

     1load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
     2
     3go_library(
     4    name = "resource",
     5    srcs = ["ref.go"],
     6    importpath = "edge-infra.dev/pkg/lib/gcp/resource",
     7    visibility = ["//visibility:public"],
     8)
     9
    10go_test(
    11    name = "resource_test",
    12    srcs = ["ref_test.go"],
    13    embed = [":resource"],
    14    deps = ["@com_github_stretchr_testify//assert"],
    15)

View as plain text