mirror of
https://github.com/kubernetes/client-go.git
synced 2026-07-17 01:57:40 +00:00
Module remotecommand originally part of kubernetes/pkg/client/unversioned was moved to client-go/tools, and will be used as authoritative in kubectl, e2e and other places. Module remotecommand relies on util/exec module which will be copied to client-go/pkg/util Kubernetes-commit: 2612e0c78ad18ac87bbd200d547100cf99f36089
15 lines
241 B
Python
15 lines
241 B
Python
package(default_visibility = ["//visibility:public"])
|
|
|
|
licenses(["notice"])
|
|
|
|
load(
|
|
"@io_bazel_rules_go//go:def.bzl",
|
|
"go_library",
|
|
)
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["exec.go"],
|
|
tags = ["automanaged"],
|
|
)
|