MVFM

slack/auth_test

Call the Slack auth.test API method

const app = mvfm(prelude, console_, slack_);
const prog = app({}, ($) => {
  const result = $.slack.auth.test();
  return $.begin($.console.log(result), result);
});
await fold(defaults(app), prog);
Ctrl+Enter