-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Expand file tree
/
Copy pathregister.go
More file actions
19 lines (17 loc) · 652 Bytes
/
register.go
File metadata and controls
19 lines (17 loc) · 652 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package v1
import (
_ "github.com/openshift/api/apps/v1"
_ "github.com/openshift/api/authorization/v1"
_ "github.com/openshift/api/build/v1"
_ "github.com/openshift/api/image/v1"
_ "github.com/openshift/api/network/v1"
_ "github.com/openshift/api/oauth/v1"
_ "github.com/openshift/api/project/v1"
_ "github.com/openshift/api/route/v1"
_ "github.com/openshift/api/security/v1"
_ "github.com/openshift/api/template/v1"
_ "github.com/openshift/api/user/v1"
"k8s.io/apimachinery/pkg/runtime/schema"
)
// SchemeGroupVersion is group version used to register these objects
var SchemeGroupVersion = schema.GroupVersion{Group: "", Version: "v1"}