Files
netbird-kubernetes-operator/internal/util/ptr.go
T

9 lines
154 B
Go
Raw Normal View History

2026-05-05 12:59:36 +02:00
// SPDX-License-Identifier: BSD-3-Clause
2025-03-06 10:57:45 +02:00
package util
// Ptr return pointer to any value for API purposes
func Ptr[T any, PT *T](x T) PT {
return &x
}