load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "status", srcs = ["status.go"], importpath = "edge-infra.dev/pkg/edge/k8objectsutils/status", visibility = ["//visibility:public"], deps = ["@io_k8s_api//core/v1:core"], ) go_test( name = "status_test", srcs = ["status_test.go"], embed = [":status"], deps = [ "@com_github_stretchr_testify//require", "@io_k8s_api//core/v1:core", ], )