package util
// AnyToPoint converts any value to a pointer.
func AnyToPoint[T any](v T) *T {
return &v
}