1 2 3export const slack = async (text) => { await fetch(process.env.SLACK_WEBHOOK, { method: 'POST', body: JSON.stringify({ text }) }) }
1 2 3
export const slack = async (text) => { await fetch(process.env.SLACK_WEBHOOK, { method: 'POST', body: JSON.stringify({ text }) }) }