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