load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "clog", srcs = [ "clog.go", "options.go", ], importpath = "edge-infra.dev/pkg/lib/cli/clog", visibility = ["//visibility:public"], deps = [ "@com_github_go_logr_logr//:logr", "@com_github_wojas_genericr//:genericr", ], ) go_test( name = "clog_test", srcs = [ "clog_test.go", "example_test.go", ], embed = [":clog"], )