UNPKG

discord-webhook-message-sender

Version:

A cli application that sends message to your discord channel!

8 lines (5 loc) 188 B
import { WebhookClient } from "discord.js"; export const sendMessage = (url: string, message: string) => { const client = new WebhookClient({ url }); return client.send(message); };