slack-robot
slack-robot copied to clipboard
res.async should call .send automatically
I forgot why res.async(cb)
didn't call res.send()
automatically and instead we have to use res.async(cb).send()
It's possible that we want to send both async and sync response together, e.g:
res.async(cb);
res.text('yo');
return res.send();