7 lines
132 B
Go

package services_test
// StringPtr returns a pointer to the string value passed in
func StringPtr(s string) *string {
return &s
}