mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 12:41:24 +00:00
16 lines
419 B
Python
16 lines
419 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "worker",
|
|
srcs = ["worker.go"],
|
|
importpath = "peridot.resf.org/apollo/worker",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//apollo/db",
|
|
"//apollo/workflow",
|
|
"//vendor/github.com/sirupsen/logrus",
|
|
"//vendor/go.temporal.io/sdk/client",
|
|
"//vendor/go.temporal.io/sdk/worker",
|
|
],
|
|
)
|