MVFM

slack/chat_postMessage

Call the Slack chat.postMessage API method

const app = mvfm(prelude, console_, slack_);
const prog = app({}, ($) => {
  const result = $.slack.chat.postMessage({ channel: "C0123456789", text: "Hello from mvfm!" });
  return $.begin($.console.log(result), result);
});
await fold(defaults(app), prog);
Ctrl+Enter