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