versia-go/internal/helpers/ptr.go
2024-08-13 01:18:14 +02:00

6 lines
65 B
Go

package helpers
func StringPtr(s string) *string {
return &s
}