mirror of
https://github.com/netbirdio/kubernetes-operator.git
synced 2026-05-22 17:11:40 -07:00
7 lines
112 B
Go
7 lines
112 B
Go
package util
|
|
|
|
// Ptr return pointer to any value for API purposes
|
|
func Ptr[T any, PT *T](x T) PT {
|
|
return &x
|
|
}
|