versia-go/internal/helpers/ptr.go

10 lines
108 B
Go
Raw Normal View History

2024-08-11 03:51:22 +02:00
package helpers
func StringPtr(s string) *string {
return &s
}
2024-08-28 00:25:25 +02:00
func BoolPtr(b bool) *bool {
return &b
}