2021-06-16 14:06:01 -07:00
|
|
|
load("//tools:defs.bzl", "go_library")
|
|
|
|
|
|
2023-03-02 10:46:34 -08:00
|
|
|
package(
|
|
|
|
|
default_applicable_licenses = ["//:license"],
|
|
|
|
|
licenses = ["notice"],
|
|
|
|
|
)
|
2021-06-16 14:06:01 -07:00
|
|
|
|
|
|
|
|
go_library(
|
|
|
|
|
name = "errors",
|
|
|
|
|
srcs = ["errors.go"],
|
|
|
|
|
visibility = ["//:sandbox"],
|
|
|
|
|
deps = ["//pkg/abi/linux/errno"],
|
|
|
|
|
)
|