load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "bsl", srcs = ["bslerror.go"], importpath = "edge-infra.dev/pkg/edge/api/apierror/bsl", visibility = ["//visibility:public"], ) go_test( name = "bsl_test", srcs = ["bslerror_test.go"], embed = [":bsl"], deps = ["@com_github_stretchr_testify//assert"], )