-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Expand file tree
/
Copy pathregister.go
More file actions
23 lines (19 loc) · 761 Bytes
/
register.go
File metadata and controls
23 lines (19 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package v1
import (
"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
"github.com/GoogleCloudPlatform/kubernetes/pkg/runtime"
_ "github.com/openshift/origin/pkg/authorization/api/v1"
_ "github.com/openshift/origin/pkg/build/api/v1"
_ "github.com/openshift/origin/pkg/deploy/api/v1"
_ "github.com/openshift/origin/pkg/image/api/v1"
_ "github.com/openshift/origin/pkg/oauth/api/v1"
_ "github.com/openshift/origin/pkg/project/api/v1"
_ "github.com/openshift/origin/pkg/route/api/v1"
_ "github.com/openshift/origin/pkg/sdn/api/v1"
_ "github.com/openshift/origin/pkg/template/api/v1"
_ "github.com/openshift/origin/pkg/user/api/v1"
)
// Codec encodes internal objects to the v1 scheme
var Codec = runtime.CodecFor(api.Scheme, "v1")
func init() {
}