package utils func BytesToStringPtr(b []byte) *string { s := string(b) return &s } func StrPtr(s string) *string { return &s }