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

go generate

This commit is contained in:
Max Korp
2018-12-03 09:48:50 -07:00
committed by Craig Jellick
parent c50d24d4b9
commit b0c70e35cf
4 changed files with 13 additions and 0 deletions

View File

@@ -7277,6 +7277,11 @@ func (in *Token) DeepCopyInto(out *Token) {
(*out)[key] = val
}
}
if in.Enabled != nil {
in, out := &in.Enabled, &out.Enabled
*out = new(bool)
**out = **in
}
return
}