1 2 3 4 5 6
export async function GET() { const credentialsSet = Boolean( process.env.TWILIO_ACCOUNT_SID && process.env.TWILIO_AUTH_TOKEN ); return Response.json({ credentialsSet }); }