package utils func String(s *string) string { if s == nil { return "" } return *s } func Pointer(s string) *string { return &s }