load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "collections", srcs = ["collections.go"], importpath = "edge-infra.dev/pkg/edge/datasync/internal/collections", visibility = ["//pkg/edge/datasync:__subpackages__"], ) go_test( name = "collections_test", srcs = ["collections_test.go"], embed = [":collections"], deps = ["@com_github_stretchr_testify//require"], )