mirror of
https://github.com/open-cluster-management-io/ocm.git
synced 2026-05-10 19:27:59 +00:00
19 lines
415 B
Go
19 lines
415 B
Go
package dockerpre012
|
|
|
|
// DeepCopyInto is manually built to copy the (probably bugged) time.Time
|
|
func (in *ImagePre012) DeepCopyInto(out *ImagePre012) {
|
|
*out = *in
|
|
out.Created = in.Created
|
|
in.ContainerConfig.DeepCopyInto(&out.ContainerConfig)
|
|
if in.Config != nil {
|
|
in, out := &in.Config, &out.Config
|
|
if *in == nil {
|
|
*out = nil
|
|
} else {
|
|
*out = new(Config)
|
|
(*in).DeepCopyInto(*out)
|
|
}
|
|
}
|
|
return
|
|
}
|