You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current API uses pointers to structs as return values, for example *Subscription or []*Subscription. Since those values are never nil and returning values also has no performance impact all methods should return values instead.
The text was updated successfully, but these errors were encountered:
The current API uses pointers to structs as return values, for example
*Subscription
or[]*Subscription
. Since those values are never nil and returning values also has no performance impact all methods should return values instead.The text was updated successfully, but these errors were encountered: