genericapiserver: fix imports

This commit is contained in:
Dr. Stefan Schimanski 2017-01-17 11:38:25 +01:00 committed by deads2k
parent dc90e9a003
commit 855c38d53e
5 changed files with 6 additions and 6 deletions

View File

@ -15,4 +15,4 @@ limitations under the License.
*/ */
// Package negotation contains media type negotiation logic. // Package negotation contains media type negotiation logic.
package negotiation // import "k8s.io/apiserver/pkg/api/handlers/negotiation" package negotiation // import "k8s.io/apiserver/pkg/endpoints/handlers/negotiation"

View File

@ -21,7 +21,7 @@ import (
"k8s.io/apimachinery/pkg/types" "k8s.io/apimachinery/pkg/types"
"k8s.io/apiserver/pkg/authentication/user" "k8s.io/apiserver/pkg/authentication/user"
genericapirequest "k8s.io/apiserver/pkg/api/request" genericapirequest "k8s.io/apiserver/pkg/endpoints/request"
"k8s.io/kubernetes/pkg/api" "k8s.io/kubernetes/pkg/api"
) )

View File

@ -17,4 +17,4 @@ limitations under the License.
// Package request contains everything around extracting info from // Package request contains everything around extracting info from
// a http request object. // a http request object.
// TODO: this package is temporary. Handlers must move into pkg/apiserver/handlers to avoid dependency cycle // TODO: this package is temporary. Handlers must move into pkg/apiserver/handlers to avoid dependency cycle
package request // import "k8s.io/apiserver/pkg/api/request" package request // import "k8s.io/apiserver/pkg/endpoints/request"

View File

@ -16,6 +16,6 @@ limitations under the License.
// Package healthz implements basic http server health checking. // Package healthz implements basic http server health checking.
// Usage: // Usage:
// import "k8s.io/apiserver/pkg/healthz" // import "k8s.io/apiserver/pkg/server/healthz"
// healthz.DefaultHealthz() // healthz.DefaultHealthz()
package healthz // import "k8s.io/apiserver/pkg/healthz" package healthz // import "k8s.io/apiserver/pkg/server/healthz"

View File

@ -16,4 +16,4 @@ limitations under the License.
// Package httplog contains a helper object and functions to maintain a log // Package httplog contains a helper object and functions to maintain a log
// along with an http response. // along with an http response.
package httplog // import "k8s.io/apiserver/pkg/httplog" package httplog // import "k8s.io/apiserver/pkg/server/httplog"