mirror of
https://github.com/rancher/rke.git
synced 2025-09-04 00:14:49 +00:00
go generate
This commit is contained in:
File diff suppressed because one or more lines are too long
1276
data/data.json
1276
data/data.json
File diff suppressed because one or more lines are too long
@@ -72,6 +72,19 @@ func (in *AciNetworkProvider) DeepCopyInto(out *AciNetworkProvider) {
|
|||||||
*out = make([]string, len(*in))
|
*out = make([]string, len(*in))
|
||||||
copy(*out, *in)
|
copy(*out, *in)
|
||||||
}
|
}
|
||||||
|
if in.ServiceGraphEndpointAddServices != nil {
|
||||||
|
in, out := &in.ServiceGraphEndpointAddServices, &out.ServiceGraphEndpointAddServices
|
||||||
|
*out = make([]map[string]string, len(*in))
|
||||||
|
for i := range *in {
|
||||||
|
if (*in)[i] != nil {
|
||||||
|
in, out := &(*in)[i], &(*out)[i]
|
||||||
|
*out = make(map[string]string, len(*in))
|
||||||
|
for key, val := range *in {
|
||||||
|
(*out)[key] = val
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user