...

Text file src/edge-infra.dev/pkg/edge/datasync/chirp/sender/BUILD.bazel

Documentation: edge-infra.dev/pkg/edge/datasync/chirp/sender

     1load("@io_bazel_rules_go//go:def.bzl", "go_library")
     2
     3go_library(
     4    name = "sender",
     5    srcs = [
     6        "kafka-sender.go",
     7        "metrics.go",
     8        "pubsub-sender.go",
     9        "sender.go",
    10        "senderFactory.go",
    11    ],
    12    importpath = "edge-infra.dev/pkg/edge/datasync/chirp/sender",
    13    visibility = ["//visibility:public"],
    14    deps = [
    15        "//pkg/edge/datasync/chirp/model",
    16        "//pkg/edge/datasync/chirp/persister",
    17        "//pkg/edge/datasync/internal/collections",
    18        "//pkg/edge/datasync/internal/config",
    19        "//pkg/edge/datasync/kafkaclient",
    20        "//pkg/lib/fog",
    21        "@com_github_go_logr_logr//:logr",
    22        "@com_github_prometheus_client_golang//prometheus",
    23        "@com_google_cloud_go_pubsub//:pubsub",
    24        "@org_golang_google_api//option",
    25    ],
    26)

View as plain text