Files

7 lines
112 B
Go
Raw Permalink Normal View History

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
}