...

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

Documentation: edge-infra.dev/pkg/edge/datasync/shoot

     1load("@io_bazel_rules_go//go:def.bzl", "go_library")
     2
     3go_library(
     4    name = "shoot",
     5    srcs = [
     6        "doc.go",
     7        "main.go",
     8    ],
     9    importpath = "edge-infra.dev/pkg/edge/datasync/shoot",
    10    visibility = ["//visibility:public"],
    11    deps = [
    12        "//pkg/edge/datasync/http",
    13        "//pkg/edge/datasync/internal/config",
    14        "//pkg/edge/datasync/kafkaclient",
    15        "//pkg/edge/datasync/shoot/config",
    16        "//pkg/edge/datasync/shoot/handler",
    17        "//pkg/edge/datasync/shoot/http",
    18        "//pkg/edge/datasync/shoot/pubsub",
    19        "//pkg/edge/datasync/shoot/worker",
    20        "//pkg/lib/fog",
    21        "@com_github_joho_godotenv//:godotenv",
    22        "@org_golang_x_sys//unix",
    23    ],
    24)

View as plain text