tada
tada copied to clipboard
Passing value from :effect to :return
In some situations, the only time a return value is available would be inside of the :effect, for example, creating a db entity and needing to return the id of that entity back to a client.
Could:
- just have
:effectreturn values (and maybe get rid of:return, and maybe rename:effect) - have the return value for
:effectbe passed in as a param to:return - something else