12 implement twilio sms #37

Merged
BenjaminPalko merged 26 commits from 12-implement-twilio-sms into master 2025-01-02 20:11:28 -05:00
2 changed files with 5 additions and 0 deletions
Showing only changes of commit 7c5c6ee80e - Show all commits

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';