load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "command", srcs = ["command.go"], importpath = "edge-infra.dev/pkg/lib/cli/command", visibility = ["//visibility:public"], deps = [ "//pkg/lib/cli/rags", "@com_github_peterbourgon_ff_v3//:ff", "@com_github_peterbourgon_ff_v3//ffcli", ], ) go_test( name = "command_test", srcs = ["command_test.go"], embed = [":command"], deps = [ "//pkg/lib/cli/rags", "@com_github_stretchr_testify//assert", ], )