Merge pull request #73351 from prksu/update-doc-k8s.io-cli-runtime

Update doc.go import for staging/src/k8s.io/cli-runtime
pull/564/head
Kubernetes Prow Robot 2019-02-04 05:09:36 -08:00 committed by GitHub
commit a0a8caac9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 22 additions and 2 deletions

View File

@ -16,4 +16,4 @@ limitations under the License.
// Package genericclioptions contains flags which can be added to you command, bound, completed, and produce
// useful helper functions. Nothing in this package can depend on kube/kube
package genericclioptions
package genericclioptions // import "k8s.io/cli-runtime/pkg/genericclioptions"

View File

@ -4,6 +4,7 @@ go_library(
name = "go_default_library",
srcs = [
"discard.go",
"doc.go",
"interface.go",
"json.go",
"jsonpath.go",

View File

@ -0,0 +1,19 @@
/*
Copyright 2019 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// Package printers is helper for formatting and printing runtime objects into
// primitives io.writer.
package printers // import "k8s.io/cli-runtime/pkg/genericclioptions/printers"

View File

@ -21,4 +21,4 @@ limitations under the License.
// standard command line arguments and parameters into a Visitor that can iterate
// over all of the identified resources, whether on the server or on the local
// filesystem.
package resource
package resource // import "k8s.io/cli-runtime/pkg/genericclioptions/resource"