mirror of https://github.com/status-im/consul.git
28 lines
760 B
Go
28 lines
760 B
Go
|
// Code generated by protoc-gen-deepcopy. DO NOT EDIT.
|
||
|
package hcpv2
|
||
|
|
||
|
import (
|
||
|
proto "google.golang.org/protobuf/proto"
|
||
|
)
|
||
|
|
||
|
// DeepCopyInto supports using Link within kubernetes types, where deepcopy-gen is used.
|
||
|
func (in *Link) DeepCopyInto(out *Link) {
|
||
|
proto.Reset(out)
|
||
|
proto.Merge(out, proto.Clone(in))
|
||
|
}
|
||
|
|
||
|
// DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Link. Required by controller-gen.
|
||
|
func (in *Link) DeepCopy() *Link {
|
||
|
if in == nil {
|
||
|
return nil
|
||
|
}
|
||
|
out := new(Link)
|
||
|
in.DeepCopyInto(out)
|
||
|
return out
|
||
|
}
|
||
|
|
||
|
// DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new Link. Required by controller-gen.
|
||
|
func (in *Link) DeepCopyInterface() interface{} {
|
||
|
return in.DeepCopy()
|
||
|
}
|