export default async function sendMessage(webhookUrl: string, text: string): Promise { await fetch(webhookUrl, { method: "POST", body: JSON.stringify({ text, }), headers: { "Content-Type": "application/json" } }); }