mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
21 lines
564 B
Python
21 lines
564 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "enums",
|
||
|
srcs = [
|
||
|
"command_type.pb.go",
|
||
|
"common.pb.go",
|
||
|
"event_type.pb.go",
|
||
|
"failed_cause.pb.go",
|
||
|
"namespace.pb.go",
|
||
|
"query.pb.go",
|
||
|
"reset.pb.go",
|
||
|
"task_queue.pb.go",
|
||
|
"workflow.pb.go",
|
||
|
],
|
||
|
importmap = "peridot.resf.org/vendor/go.temporal.io/api/enums/v1",
|
||
|
importpath = "go.temporal.io/api/enums/v1",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = ["//vendor/github.com/gogo/protobuf/proto"],
|
||
|
)
|