mirror of
https://github.com/Xevion/vastly.git
synced 2025-12-05 23:16:48 -06:00
6 lines
56 B
Go
6 lines
56 B
Go
package api
|
|
|
|
func Pointer[T any](d T) *T {
|
|
return &d
|
|
}
|