kops/pkg/pretty/BUILD.bazel

16 lines
404 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = ["help.go"],
importpath = "k8s.io/kops/pkg/pretty",
visibility = ["//visibility:public"],
deps = ["//vendor/github.com/MakeNowJust/heredoc:go_default_library"],
)
go_test(
name = "go_default_test",
srcs = ["help_test.go"],
embed = [":go_default_library"],
)