import * as wmill from "https://deno.land/x/[email protected]/index.ts";
import { WebClient } from "https://deno.land/x/[email protected]/mod.ts";
/*
@param: {string} channel - Conversation ID to fetch history for.
*/

export async function main(
  slack_auth: wmill.Resource<"slack">,
  channel: string,
) {
  const web = new WebClient(slack_auth);

  let response = await web.conversations.history({
    channel: channel,
  });

  return { "response": response };
}