mirror of
https://github.com/siderolabs/talos.git
synced 2025-10-18 11:01:12 +02:00
Refactor every typed.Resource except KubeletConfigSpec to use deep-copy tool for generating DeepCopy method. KubeletConfigSpec is excluded because its DeepCopy method is not trivial. Signed-off-by: Dmitriy Matrenichev <dmitry.matrenichev@siderolabs.com>
14 lines
463 B
Go
14 lines
463 B
Go
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
// Code generated by "deep-copy -type Layer -header-file ../../../hack/boilerplate.txt -o deep_copy.generated.go ."; DO NOT EDIT.
|
|
|
|
package extensions
|
|
|
|
// DeepCopy generates a deep copy of Layer.
|
|
func (o Layer) DeepCopy() Layer {
|
|
var cp Layer = o
|
|
return cp
|
|
}
|