diff --git a/src/messaging/mod.rs b/src/messaging/mod.rs index 04e6d7f..fb4c3e7 100644 --- a/src/messaging/mod.rs +++ b/src/messaging/mod.rs @@ -17,7 +17,12 @@ pub async fn send_messages( schedule_at: None, }; let mut sendmsg = swoosh::SendMsg::default(); - sendmsg.load_config(&config.auth_token, &config.phone_number, &config.service_sid, &config.account_sid); + sendmsg.load_config( + &config.auth_token, + &config.phone_number, + &config.service_sid, + &config.account_sid, + ); sendmsg.load_recipient(&contact.phone_number); sendmsg.load_message(&message.content); match sendmsg.send_message(¶m).await {