Created by admin 241 days ago Viewed 10121 times 0 Points
slack
No comments yet
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.70.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,
});
}
No comments yet