1
0
mirror of https://github.com/rancher/types.git synced 2025-09-02 13:45:51 +00:00

Generate code for extra binds

This commit is contained in:
David Lewis
2018-03-20 21:14:51 -07:00
parent f181b046a5
commit 8f42711f5c
7 changed files with 27 additions and 10 deletions

View File

@@ -1150,6 +1150,11 @@ func (in *BaseService) DeepCopyInto(out *BaseService) {
(*out)[key] = val
}
}
if in.ExtraBinds != nil {
in, out := &in.ExtraBinds, &out.ExtraBinds
*out = make([]string, len(*in))
copy(*out, *in)
}
return
}