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/api/status", visibility = ["//visibility:public"], ) go_test( name = "status_test", srcs = ["status_test.go"], embed = [":status"], deps = ["@com_github_stretchr_testify//assert"], )