Hi all. Inside of an `ApplyT` callback, I need to...
# golang
b
Hi all. Inside of an
ApplyT
callback, I need to make some network calls. This is because I need the raw string value of an
Output
for use as a parameter to an API call somewhere. That API call might fail inside the
ApplyT
callback, yet I don't see a way to propagate this error up, since
ApplyT
only returns an
Output
. Any advice here?