load("@io_bazel_rules_go//go:def.bzl", "go_library") go_library( name = "metric", srcs = [ "metric.go", "outboxMessages.go", ], importpath = "edge-infra.dev/pkg/edge/datasync/internal/metric", visibility = ["//pkg/edge/datasync:__subpackages__"], deps = [ "//pkg/edge/datasync/internal/config", "//pkg/edge/datasync/internal/outbox", "//pkg/lib/fog", "@com_github_prometheus_client_golang//prometheus", ], )