1
0
mirror of https://github.com/pocket-id/pocket-id.git synced 2026-02-04 18:34:50 +00:00
Files
pocket-id/backend/internal/utils/ptr_util.go
2025-04-06 15:04:08 +02:00

6 lines
54 B
Go

package utils
func Ptr[T any](v T) *T {
return &v
}