package utils func StrPtr(v string) *string { return &v } func BoolPtr(v bool) *bool { return &v }