package api import ( "github.com/GoogleCloudPlatform/kubernetes/pkg/api" "github.com/GoogleCloudPlatform/kubernetes/pkg/runtime" _ "github.com/openshift/origin/pkg/build/api" _ "github.com/openshift/origin/pkg/config/api" _ "github.com/openshift/origin/pkg/deploy/api" _ "github.com/openshift/origin/pkg/image/api" _ "github.com/openshift/origin/pkg/template/api" _ "github.com/openshift/origin/pkg/route/api" ) // Codec is the identity codec for this package - it can only convert itself // to itself. var Codec = runtime.CodecFor(api.Scheme, "") func init() { api.Scheme.AddKnownTypes("") }