load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "meta", srcs = [ "name.go", "resource_refs.go", "types.go", ], importpath = "edge-infra.dev/pkg/k8s/meta", visibility = ["//visibility:public"], ) go_test( name = "meta_test", srcs = [ "name_test.go", "types_test.go", ], embed = [":meta"], deps = ["@com_github_stretchr_testify//assert"], )