aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/resend.ts
blob: 48c5fb76b12b18888f1a36a705301feedd9b2788 (plain)
1
2
3
4
5
import { env } from '@/lib/env'
import { Resend } from 'resend'

export const getResend = () =>
  env.RESEND_API_KEY ? new Resend(env.RESEND_API_KEY) : null