load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "get", srcs = ["get.go"], importpath = "edge-infra.dev/pkg/edge/edgecli/commands/activationcode/get", visibility = ["//visibility:public"], deps = [ "//pkg/edge/edgecli", "//pkg/edge/edgecli/constructors", "//pkg/edge/edgecli/flagutil", "//pkg/lib/cli/command", "//pkg/lib/cli/rags", ], ) go_test( name = "get_test", srcs = ["get_unit_test.go"], embed = [":get"], deps = [ "//pkg/edge/api/fake", "//pkg/edge/edgecli", "//pkg/edge/edgecli/flagutil", "@com_github_stretchr_testify//require", ], )