mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
19 lines
639 B
Python
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",
|
||
|
],
|
||
|
)
|