load("@io_bazel_rules_go//go:def.bzl", "go_library") go_library( name = "worker", srcs = [ "main_worker.go", "message_converter.go", "metrics.go", "worker.go", ], importpath = "edge-infra.dev/pkg/edge/datasync/shoot/worker", visibility = ["//visibility:public"], deps = [ "//pkg/edge/datasync/kafkaclient", "//pkg/edge/datasync/shoot/handler", "//pkg/edge/datasync/shoot/model", "//pkg/edge/datasync/shoot/pubsub", "//pkg/lib/fog", "@com_github_go_logr_logr//:logr", "@com_github_prometheus_client_golang//prometheus", ], )