load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "team", srcs = ["team.go"], importpath = "edge-infra.dev/pkg/tools/team", visibility = ["//visibility:public"], deps = ["@io_k8s_sigs_yaml//:yaml"], ) go_test( name = "team_test", srcs = ["team_test.go"], data = glob(["testdata/**"]), embed = [":team"], deps = ["@com_github_stretchr_testify//assert"], )