import { WebClient } from "https://deno.land/x/slack_web_api@1.0.0/mod.ts";
import type { Resource } from "https://deno.land/x/windmill@v1.24.1/mod.ts";

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

  await web.chat.postMessage({
    channel,
    text,
  });
}