...

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

Documentation: edge-infra.dev/pkg/edge/datasync/internal/collections

     1load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
     2
     3go_library(
     4    name = "collections",
     5    srcs = ["collections.go"],
     6    importpath = "edge-infra.dev/pkg/edge/datasync/internal/collections",
     7    visibility = ["//pkg/edge/datasync:__subpackages__"],
     8)
     9
    10go_test(
    11    name = "collections_test",
    12    srcs = ["collections_test.go"],
    13    embed = [":collections"],
    14    deps = ["@com_github_stretchr_testify//require"],
    15)

View as plain text