MVFM

slack/files_comments_delete

Call the Slack files.comments.delete API method

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