move pkg/master/server to cmd/kube-apiserver/app

This commit is contained in:
Tim Hockin
2015-02-07 14:13:22 -08:00
parent 0a7b89cc00
commit 899d30f16a
4 changed files with 6 additions and 6 deletions

View File

@@ -21,9 +21,9 @@ package main
import (
"os"
apiserver "github.com/GoogleCloudPlatform/kubernetes/cmd/kube-apiserver/app"
"github.com/GoogleCloudPlatform/kubernetes/pkg/controllermanager"
"github.com/GoogleCloudPlatform/kubernetes/pkg/hyperkube"
apiserver "github.com/GoogleCloudPlatform/kubernetes/pkg/master/server"
sched "github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/scheduler/server"
)