load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "sink", srcs = [ "command.go", "doc.go", "run.go", ], importpath = "edge-infra.dev/pkg/lib/cli/sink", visibility = ["//visibility:public"], deps = [ "//pkg/lib/cli/clog", "//pkg/lib/cli/rags", "//pkg/lib/fog", "@com_github_go_logr_logr//:logr", "@com_github_peterbourgon_ff_v3//:ff", ], ) go_test( name = "sink_test", srcs = [ "command_test.go", "example_test.go", ], embed = [":sink"], deps = [ "//pkg/lib/cli/rags", "@com_github_peterbourgon_ff_v3//:ff", "@com_github_stretchr_testify//assert", "@com_github_stretchr_testify//require", ], )