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

Go generated

This commit is contained in:
Frank Mai
2019-02-13 10:08:23 +08:00
committed by Craig Jellick
parent 100c3ef953
commit 8206f5d59b
4 changed files with 18 additions and 1 deletions

View File

@@ -170,6 +170,13 @@ func (in *AppRevisionStatus) DeepCopyInto(out *AppRevisionStatus) {
(*out)[key] = val
}
}
if in.Files != nil {
in, out := &in.Files, &out.Files
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
return
}
@@ -251,6 +258,13 @@ func (in *AppUpgradeConfig) DeepCopyInto(out *AppUpgradeConfig) {
(*out)[key] = val
}
}
if in.Files != nil {
in, out := &in.Files, &out.Files
*out = make(map[string]string, len(*in))
for key, val := range *in {
(*out)[key] = val
}
}
return
}