Created by admin 427 days ago Viewed 14339 times 0 Points
slack
No comments yet
import { WebClient } from "https://deno.land/x/slack_web_api@1.0.0/mod.ts";
type Slack = {
token: string;
};
export async function main(text: string, channel: string, slack: Slack) {
const web = new WebClient(slack.token);
await web.chat.postMessage({
channel,
text,
});
}
No comments yet