import { WebClient } from "https://deno.land/x/[email protected]/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,
});
}
Submitted by hugo697 300 days ago
import { WebClient } from "https://deno.land/x/[email protected]/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,
});
}
Submitted by hugo697 314 days ago
import { WebClient } from "https://deno.land/x/[email protected]/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,
});
}
Submitted by admin 946 days ago
import { WebClient } from "https://deno.land/x/[email protected]/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,
});
}
Submitted by admin 950 days ago
import { WebClient } from "https://deno.land/x/[email protected]/mod.ts";
import type { Resource } from "https://deno.land/x/[email protected]/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,
});
}
Submitted by adam186 1078 days ago
import { WebClient } from "https://deno.land/x/[email protected]/mod.ts";
import type { Resource } from "https://deno.land/x/[email protected]/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,
});
}
Submitted by adam186 1113 days ago
import { WebClient } from "https://deno.land/x/[email protected]/mod.ts";
import type { Resource } from "https://deno.land/x/[email protected]/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,
});
}
Submitted by admin 1327 days ago