peridot/vendor/github.com/gogo/status/BUILD.bazel
2022-07-07 22:13:21 +02:00

19 lines
639 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "status",
srcs = ["status.go"],
importmap = "peridot.resf.org/vendor/github.com/gogo/status",
importpath = "github.com/gogo/status",
visibility = ["//visibility:public"],
deps = [
"//vendor/github.com/gogo/googleapis/google/rpc",
"//vendor/github.com/gogo/protobuf/proto",
"//vendor/github.com/gogo/protobuf/types",
"@go_googleapis//google/rpc:status_go_proto",
"@io_bazel_rules_go//proto/wkt:any_go_proto",
"@org_golang_google_grpc//codes",
"@org_golang_google_grpc//status",
],
)