...
1load("@io_bazel_rules_go//go:def.bzl", "go_library")
2
3go_library(
4 name = "worker",
5 srcs = [
6 "main_worker.go",
7 "message_converter.go",
8 "metrics.go",
9 "worker.go",
10 ],
11 importpath = "edge-infra.dev/pkg/edge/datasync/shoot/worker",
12 visibility = ["//visibility:public"],
13 deps = [
14 "//pkg/edge/datasync/kafkaclient",
15 "//pkg/edge/datasync/shoot/handler",
16 "//pkg/edge/datasync/shoot/model",
17 "//pkg/edge/datasync/shoot/pubsub",
18 "//pkg/lib/fog",
19 "@com_github_go_logr_logr//:logr",
20 "@com_github_prometheus_client_golang//prometheus",
21 ],
22)
View as plain text