Files
vastly/api/utilities.go
2024-12-13 16:55:56 -06:00

6 lines
56 B
Go

package api
func Pointer[T any](d T) *T {
return &d
}