package utils // ToStringPointer :: convert a string into its pointer func ToStringPointer(s string) *string { return &s }