versia-go/internal/helpers/ptr.go
2024-08-28 01:10:38 +02:00

10 lines
108 B
Go

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