mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
35 lines
1.0 KiB
Python
35 lines
1.0 KiB
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "serviceerror",
|
|
srcs = [
|
|
"canceled.go",
|
|
"cancellationAlreadyRequested.go",
|
|
"clientVersionNotSupported.go",
|
|
"convert.go",
|
|
"dataLoss.go",
|
|
"deadlineExceeded.go",
|
|
"internal.go",
|
|
"invalidArgument.go",
|
|
"namespaceAlreadyExists.go",
|
|
"namespaceNotActive.go",
|
|
"notFound.go",
|
|
"permissionDenied.go",
|
|
"queryFailed.go",
|
|
"resourceExhausted.go",
|
|
"serverVersionNotSupported.go",
|
|
"serviceerror.go",
|
|
"unavailable.go",
|
|
"unimplemented.go",
|
|
"workflowExecutionAlreadyStarted.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/go.temporal.io/api/serviceerror",
|
|
importpath = "go.temporal.io/api/serviceerror",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//vendor/github.com/gogo/status",
|
|
"//vendor/go.temporal.io/api/errordetails/v1:errordetails",
|
|
"@org_golang_google_grpc//codes",
|
|
],
|
|
)
|