MVFM

slack/reminders_add

Call the Slack reminders.add API method

const app = mvfm(prelude, console_, slack_);
const prog = app({}, ($) => {
  const result = $.slack.reminders.add({ text: "Review PR", time: "in 1 hour" });
  return $.begin($.console.log(result), result);
});
await fold(defaults(app), prog);
Ctrl+Enter