1load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") 2 3go_library( 4 name = "status", 5 srcs = ["status.go"], 6 importpath = "edge-infra.dev/pkg/edge/k8objectsutils/status", 7 visibility = ["//visibility:public"], 8 deps = ["@io_k8s_api//core/v1:core"], 9) 10 11go_test( 12 name = "status_test", 13 srcs = ["status_test.go"], 14 embed = [":status"], 15 deps = [ 16 "@com_github_stretchr_testify//require", 17 "@io_k8s_api//core/v1:core", 18 ], 19)