kops/pkg/jsonutils/BUILD.bazel

16 lines
426 B
Python

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