load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "errors", srcs = ["contextual_error.go"], importpath = "edge-infra.dev/pkg/lib/errors", visibility = ["//visibility:public"], ) go_test( name = "errors_test", srcs = ["contextual_errors_test.go"], embed = [":errors"], deps = ["@com_github_stretchr_testify//assert"], )