mirror of
https://github.com/YuzuZensai/netbird-kubernetes-operator.git
synced 2026-09-13 10:49:15 +00:00
This change adds SPDX license headers to all files and eforces it with the linter. Signed-off-by: Philip Laine <philip.laine@gmail.com>
9 lines
154 B
Go
9 lines
154 B
Go
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
package util
|
|
|
|
// Ptr return pointer to any value for API purposes
|
|
func Ptr[T any, PT *T](x T) PT {
|
|
return &x
|
|
}
|