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
Idea: generate chainable API (e.g. WithID(id uuid.UUID)) that takes care of taking the pointer.
If a field is a pointer value (e.g. *time.Time), we could generate a WithMyFieldValue(value time.Time) method that sets the pointer to a pointer to a time.Time in the changeset.
Bulding pointers to pointers can be tricky and need some extra lines of code.
We could use a generic
Optional
type behind some command flag:The text was updated successfully, but these errors were encountered: