create client

This commit is contained in:
Benjamin Palko 2024-12-30 17:34:43 -05:00
parent 1ecec30bc5
commit 7c5c6ee80e
2 changed files with 5 additions and 0 deletions

View file

@ -0,0 +1,4 @@
import twilio from 'twilio';
import { TwilioConfig } from './twilio.config';
export const client = twilio(TwilioConfig.twilio_account_sid, TwilioConfig.twilio_auth_token);

View file

@ -0,0 +1 @@
export * from './client';