mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-13 09:13:23 +03:00
6 lines
54 B
Go
6 lines
54 B
Go
package utils
|
|
|
|
func Ptr[T any](v T) *T {
|
|
return &v
|
|
}
|