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

go generate

This commit is contained in:
galal-hussein
2018-11-07 01:48:47 +02:00
committed by Alena Prokharchyk
parent 9c94b012a7
commit 3efcb2647b
2 changed files with 6 additions and 1 deletions

View File

@@ -1676,6 +1676,11 @@ func (in *ETCDService) DeepCopyInto(out *ETCDService) {
*out = make([]string, len(*in))
copy(*out, *in)
}
if in.Snapshot != nil {
in, out := &in.Snapshot, &out.Snapshot
*out = new(bool)
**out = **in
}
return
}