1
0
mirror of https://github.com/rancher/types.git synced 2025-09-18 07:52:41 +00:00

go generate

This commit is contained in:
David Lewis
2018-03-22 21:17:34 -07:00
committed by Darren Shepherd
parent b5b5acf020
commit c8a2bab012
2 changed files with 7 additions and 0 deletions

View File

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