1
0
mirror of https://github.com/rancher/types.git synced 2025-09-08 16:39:00 +00:00

go generate

This commit is contained in:
galal-hussein
2019-02-27 21:42:35 +02:00
committed by Alena Prokharchyk
parent 4372075f56
commit fae0ec5411
61 changed files with 517 additions and 472 deletions

View File

@@ -1,7 +1,7 @@
package v1
import (
batch_v1 "k8s.io/api/batch/v1"
batchv1 "k8s.io/api/batch/v1"
runtime "k8s.io/apimachinery/pkg/runtime"
)
@@ -12,7 +12,7 @@ func (in *JobList) DeepCopyInto(out *JobList) {
out.ListMeta = in.ListMeta
if in.Items != nil {
in, out := &in.Items, &out.Items
*out = make([]batch_v1.Job, len(*in))
*out = make([]batchv1.Job, len(*in))
for i := range *in {
(*in)[i].DeepCopyInto(&(*out)[i])
}