...

Text file src/edge-infra.dev/cmd/x/ocirefsplainer/BUILD.bazel

Documentation: edge-infra.dev/cmd/x/ocirefsplainer

     1load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
     2
     3go_library(
     4    name = "ocirefsplainer_lib",
     5    srcs = ["main.go"],
     6    importpath = "edge-infra.dev/cmd/x/ocirefsplainer",
     7    visibility = ["//visibility:private"],
     8    deps = ["@com_github_google_go_containerregistry//pkg/name"],
     9)
    10
    11go_binary(
    12    name = "ocirefsplainer",
    13    embed = [":ocirefsplainer_lib"],
    14    visibility = ["//visibility:public"],
    15)

View as plain text