mirror of
https://github.com/optim-enterprises-bv/kubernetes.git
synced 2025-11-03 11:48:15 +00:00
Merge pull request #29042 from dims/fixup-imports
Automatic merge from submit-queue Use Go canonical import paths Add canonical imports only in existing doc.go files. https://golang.org/doc/go1.4#canonicalimports Fixes #29014
This commit is contained in:
@@ -15,4 +15,4 @@ limitations under the License.
|
||||
*/
|
||||
|
||||
// Package annotations defines annotation keys that shared between server and client
|
||||
package annotations
|
||||
package annotations // import "k8s.io/kubernetes/pkg/api/annotations"
|
||||
|
||||
@@ -21,4 +21,4 @@ limitations under the License.
|
||||
// The contract presented to clients is located in the versioned packages,
|
||||
// which are sub-directories. The first one is "v1". Those packages
|
||||
// describe how a particular version is serialized to storage/network.
|
||||
package api
|
||||
package api // import "k8s.io/kubernetes/pkg/api"
|
||||
|
||||
@@ -15,4 +15,4 @@ limitations under the License.
|
||||
*/
|
||||
|
||||
// Package errors provides detailed error types for api field validation.
|
||||
package errors
|
||||
package errors // import "k8s.io/kubernetes/pkg/api/errors"
|
||||
|
||||
@@ -15,4 +15,4 @@ limitations under the License.
|
||||
*/
|
||||
|
||||
// Package etcd provides conversion of etcd errors to API errors.
|
||||
package storage
|
||||
package storage // import "k8s.io/kubernetes/pkg/api/errors/storage"
|
||||
|
||||
@@ -16,4 +16,4 @@ limitations under the License.
|
||||
|
||||
// Package meta provides functions for retrieving API metadata from objects
|
||||
// belonging to the Kubernetes API
|
||||
package meta
|
||||
package meta // import "k8s.io/kubernetes/pkg/api/meta"
|
||||
|
||||
@@ -15,4 +15,4 @@ limitations under the License.
|
||||
*/
|
||||
|
||||
// Package rest defines common logic around changes to Kubernetes resources.
|
||||
package rest
|
||||
package rest // import "k8s.io/kubernetes/pkg/api/rest"
|
||||
|
||||
@@ -16,4 +16,4 @@ limitations under the License.
|
||||
|
||||
// +k8s:deepcopy-gen=package
|
||||
|
||||
package unversioned
|
||||
package unversioned // import "k8s.io/kubernetes/pkg/api/unversioned"
|
||||
|
||||
@@ -18,4 +18,4 @@ limitations under the License.
|
||||
// +k8s:conversion-gen=k8s.io/kubernetes/pkg/api
|
||||
|
||||
// Package v1 is the v1 version of the API.
|
||||
package v1
|
||||
package v1 // import "k8s.io/kubernetes/pkg/api/v1"
|
||||
|
||||
@@ -16,4 +16,4 @@ limitations under the License.
|
||||
|
||||
// Package validation has functions for validating the correctness of api
|
||||
// objects and explaining what is wrong with them when they aren't valid.
|
||||
package validation
|
||||
package validation // import "k8s.io/kubernetes/pkg/api/validation"
|
||||
|
||||
Reference in New Issue
Block a user